/* THESE ARE THE GLOBAL JAVASCRIPT FUNCTIONS.  THEY WILL APPEAR ON EVERY PAGE ON THE SITE */

function popupWindow(w_url,w_width,w_height) {
openWindow = window.open(w_url,"win"+w_height,"toolbar=0,location=0,scrollbars=1,directories=0,resizable=yes,status=0,menubar=0,width=" + w_width + ",height=" + w_height);
if (openWindow.opener == null) openWindow.opener = self;
openWindow.focus();
return false;
}

function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function changeImages() {
	if (document.images) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}

