// JavaScript Document/* open new centered window with scrolling ability *//* USAGE: javascript:popWinScroll('filename.html','windowname', width, height); */function popWinScroll(url,name,popW,popH) {        version = navigator.appVersion;	var w = 800, h = 600;        if (version.toLowerCase().indexOf("mac")!=-1) {                    popW = eval("popW-18");        }	if (document.all || document.layers) {		w = screen.availWidth;		h = screen.availHeight;	}	var leftPos = (w-popW)/2, topPos = (h-popH)/2;	window.open(url,name,'width=' + popW + ',height=' + popH + ',scrollbars=auto,toolbar=no,status=no,resizable=yes,top=' + topPos + ',left=' + leftPos);void(0);}/* open new centered window with scrolling ability *//* USAGE: javascript:popWinScroll('filename.html','windowname', width, height); */function popWin(url,name,popW,popH) {        version = navigator.appVersion;	var w = 800, h = 600;        if (version.toLowerCase().indexOf("mac")!=-1) {                    popW = eval("popW-18");        }	if (document.all || document.layers) {		w = screen.availWidth;		h = screen.availHeight;	}	var leftPos = (w-popW)/2, topPos = (h-popH)/2;	window.open(url,name,'width=' + popW + ',height=' + popH + ',scrollbars=no,toolbar=no,status=no,resizable=no,top=' + topPos + ',left=' + leftPos);void(0);}/* image rollovers *//* USAGE: <img src="/imgs/foo.gif" hsrc="/imgs/bar.gif" /> */function soopaSetup() {	var img, sh, sn	for (var i = 0; (img = document.images[i]); i++) {		if (img.getAttribute) {			sn = img.getAttribute("src");			sh = img.getAttribute("hsrc");			if (sn != "" && sn != null) {				img.n = new Image();				img.n.src = img.src;							if (sh != "" && sh != null) {					img.h = new Image();					img.h.src = sh;					img.onmouseover = soopaSwapOn					img.onmouseout  = soopaSwapOff				}			}		}	}}function soopaSwapOn() {	this.src = this.h.src;}function soopaSwapOff() {	this.src  = this.n.src;}