// JavaScript Image Viewer
// Customized for: Innerchange Counseling

function ImageWindow(image,name, w, h) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
var imgsrc = '<IMG SRC="'+image+'" vspace=5 alt="image" />'
var winfeatures = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=no,resizable=no,toolbar=no,location=no,directories=no,status=no,menubar=no'

win = window.open("", name, winfeatures)
 win.document.write ("<HTML>")
 win.document.write ("<HEAD><TITLE>ImageViewer</TITLE></HEAD>")
 win.document.write ("<BODY bgcolor=#acb98c text=#000000 link=#336633 vlink=#666666 alink=#000000>")
 win.document.write ("<CENTER>",imgsrc,"</CENTER>")
 win.document.write ("<CENTER><FONT FACE=veranda SIZE=2>")
 win.document.write ("<a href=# onClick = 'self.close()'>Close Window</a>")
 win.document.write ("</FONT></CENTER>")
 win.document.write ("</HTML>")

if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

// Copyright 2002, David Paul Ellenwood
// http://www.davidpaulellenwood.com
