	// Sitewide objects	var PicJPG = new Array()	PicJPG[0] = "c_more";	var PicGIF = new Array()	PicGIF[0] = "c_more";		for(x=0;x<PicJPG.length;x++){	  eval(PicJPG[x]+" = new Image();");	  eval(PicJPG[x]+".src = 'img/"+PicJPG[x]+"0.jpg';");	  eval(PicJPG[x]+"1 = new Image();");	  eval(PicJPG[x]+"1.src = 'img/"+PicJPG[x]+"1.jpg';");	}	for(x=0;x<PicGIF.length;x++){	  eval(PicGIF[x]+" = new Image();");	  eval(PicGIF[x]+".src = 'img/"+PicGIF[x]+"0.gif';");	  eval(PicGIF[x]+"1 = new Image();");	  eval(PicGIF[x]+"1.src = 'img/"+PicGIF[x]+"1.gif';");	}	function mover(obj) {	if (document.images) {		eval( "document." + obj + ".src = " + obj + "1.src;");		return 1;	}}function mout(obj) {	if (document.images) {		eval( "document." + obj + ".src = " + obj + ".src;");		return 1;	}}function PopUp(nURL,winName,popW,popH) {  	w = screen.width ; h = screen.height  	if (document.layers) {    		if ((w >= 800) && (w <= 1028)) {w = 1028}    		if ((h >= 600) && (h <= 780))  {h = 780}    		if ((w >= 640) && (w <= 800))  {w = 800}    		if ((h >= 480) && (h <= 600))  {h = 600}    		if (w <= 640) {w = 640}    		if (h <= 480) {h = 480}  	}	var leftPos = (w-popW)/2, topPos = (h-popH)/2;	var windowprops = "location=no,scrollbars=yes,menubar=no,toolbar=no,resizable=no,status=no" + ",left=" + leftPos + ",top=" + topPos + ",width=" + popW + ",height=" + popH;	popup = window.open(nURL,winName,windowprops);	if (popup.blur) {	  popup.focus();	}}function PopUpPDF(nURL,winName,popW,popH) {  	w = screen.width ; h = screen.height  	if (document.layers) {    		if ((w >= 800) && (w <= 1028)) {w = 1028}    		if ((h >= 600) && (h <= 780))  {h = 780}    		if ((w >= 640) && (w <= 800))  {w = 800}    		if ((h >= 480) && (h <= 600))  {h = 600}    		if (w <= 640) {w = 640}    		if (h <= 480) {h = 480}  	}	var leftPos = (w-popW)/2, topPos = (h-popH)/2;	var windowprops = "location=yes,scrollbars=yes,menubar=yes,toolbar=yes,resizable=yes,status=yes" + ",left=" + leftPos + ",top=" + topPos + ",width=" + popW + ",height=" + popH;	popup = window.open(nURL,winName,windowprops);	if (popup.blur) {	  popup.focus();	}}