<!--function WM_imageSwap(daImage, daSrc){  var objStr,obj;  // Check to make sure that images are supported in the DOM.  if(document.images){    // Check to see whether you are using a name, number, or object    if (typeof(daImage) == 'string') {      // This whole objStr nonesense is here solely to gain compatability      // with ie3 for the mac.      objStr = 'document.' + daImage;      obj = eval(objStr);      obj.src = daSrc;    } else if ((typeof(daImage) == 'object') && daImage && daImage.src) {      daImage.src = daSrc;    }  }}	function OpenImageWindow(URL, width, height){	 window.open (URL,"anyName","toolbar=no,location=no, scrollbars=yes,width=" + width + ",height=" + height + ",personalbar=no,directories=no,menubar=no,titlebar=no,resizable=yes,left="+parseInt((screen.availWidth-width)/2)+",top="+parseInt((screen.availHeight-height)/2)+"");	 	}		function OpenNewWindow(URL, width, height){	 window.open (URL,"anyName","toolbar=yes,location=yes, scrollbars=yes,width=" + width + ",height=" + height + ",personalbar=yes,directories=no,menubar=yes,titlebar=yes,resizable=yes,left="+parseInt((screen.availWidth-width)/2)+",top="+parseInt((screen.availHeight-height)/2)+"");	 	}		function OpenWindow(URL, width, height){	 window.open (URL,"anyName","toolbar=no,location=no,scrollbars=no,width=" + width + ",height=" + height + ",personalbar=no,directories=no,menubar=no,titlebar=no,resizable=no,left="+parseInt((screen.availWidth-width)/2)+",top="+parseInt((screen.availHeight-height)/2)+"");	 return false;	}		function QuickCloseWindow(URL, width, height){	 window.open (URL,"anyName","toolbar=no,location=no, scrollbars=no,width=" + width + ",height=" + height + ",personalbar=no,directories=no,menubar=no,titlebar=no,resizable=no,left="+parseInt((screen.availWidth-width)/2)+",top="+parseInt((screen.availHeight-height)/2)+"");	}	function changeImages() {		for (var i=0; i<changeImages.arguments.length; i+=2) {			if (document[changeImages.arguments[i]] != null)				document[changeImages.arguments[i]].src = changeImages.arguments[i+1];		}	}// -->