<!--
/* This function should be used for all image rollover effects */

	function changeImage(imageName,newImageSource) {
		if (document.images) {
			document.images[imageName].src = newImageSource;
		}
	}


	function popupWindow(SiteURL,WindowName,OptionParameters) {
		/* Opens a new window based on following parameters
			SiteURL: A full URL to the site or file you wish to open
			WindowName: The name of the Window that JS assigns when creating
			OptionParameters: option list (use Window.open JS reference for parameter list)
		*/
		OptionListValue = OptionParameters;
		// Assign a Default Set of Parameters if the optionList does not exist
		if ((OptionListValue == '') || (OptionList == null)) {
			OptionListValue = 'height=100,width=500,scrollbars=no,location=no,menubar=no,toolbar=no,resizable=no,status=no,locationbar=no';
		}
		winOpener = window.open(SiteURL,WindowName,OptionListValue);
		winOpener.focus();
	}
	
	function loadTopFrame(URL) {
		top.document.location = URL
	}
	
	function mailPage()
	
	{
		mail_str = "mailto:?subject=Centive Link " + document.title;
		mail_str += "&body=Attached is a document from the Centive Website that we think you would be interested in.";
		mail_str += "\nYou can view it here: " + location.href; 
		location.href = mail_str;
	}


//-->
