function ro(imageName, onOrOff, remotePath, fileNameSuffix){	if (!fileNameSuffix)		var fileNameSuffix = "gif";		if (!remotePath)		var remotePath = "images/";			if (document.images[imageName])	{		if (onOrOff == "on")		{			var tmp = new Image();			tmp.src = remotePath + imageName + "2." + fileNameSuffix;			document.images[imageName].src = tmp.src;		}		else if (onOrOff == "off")		{			var tmp = new Image();			tmp.src = remotePath + imageName + "." + fileNameSuffix;			document.images[imageName].src = tmp.src;		}		else		{			var tmp = new Image();			tmp.src = remotePath + imageName + "3." + fileNameSuffix;			document.images[imageName].src = tmp.src;		}	}}function closeWindow(){	if (document.getElementById)	{		if (navigator.appName == "Microsoft Internet Explorer")			top.window.close();		else		{			if (top.window)				top.window.close();			else				window.close();		}	}	else	{		if (top.window)			top.window.close();		else if (parent.window)			parent.window.close();		else			window.close();	}}function smartLinks(){	if (document.getElementById)	{		var theLinks = document.getElementsByTagName('a');	// get all <a> tags		for (var i = 0; i < theLinks.length; i++) // loop through the tags			theLinks[i].onfocus = new Function("if (this.blur) this.blur()"); // apply a blur() function to each one		var theAreas = document.getElementsByTagName("area"); // don't forget <area> tags for image map links		for (var i = 0; i < theAreas.length; i++)			theAreas[i].onfocus = new Function("if (this.blur) this.blur()");	}}function preventLinkBoxes(){	if (document.getElementById)	{		var theLinks = document.getElementsByTagName('a');	// get all <a> tags		for (var i = 0; i < theLinks.length; i++) // loop through the tags			theLinks[i].onfocus = new Function("if (this.blur) this.blur()"); // apply a blur() function to each one		var theAreas = document.getElementsByTagName("area"); // don't forget <area> tags for image map links		for (var i = 0; i < theAreas.length; i++)			theAreas[i].onfocus = new Function("if (this.blur) this.blur()");	}}