// JavaScript Document// BEGIN MENU SCRIPTfunction toggleMenu(whichMenu){	if (document.getElementById)	{		// this is the way the standards work		var style2 = document.getElementById(whichMenu).style;		style2.display = style2.display? "":"block";	}	else if (document.all)	{		// this is the way old msie versions work		var style2 = document.all[whichMenu].style;		style2.display = style2.display? "":"block";	}	else if (document.layers)	{		// this is the way nn4 works		var style2 = document.layers[whichMenu].style;		style2.display = style2.display? "":"block";	}}var highlightbehavior="TD"var ns6=document.getElementById&&!document.allvar ie=document.allfunction changeto(e,highlightcolor){source=ie? event.srcElement : e.targetif (source.tagName=="TABLE")returnwhile(source.tagName!=highlightbehavior && source.tagName!="HTML")source=ns6? source.parentNode : source.parentElementif (source.style.backgroundColor!=highlightcolor&&source.id!="ignore")source.style.backgroundColor=highlightcolor}function contains_ns6(master, slave) { //check if slave is contained by masterwhile (slave.parentNode)if ((slave = slave.parentNode) == master)return true;return false;}function changeback(e,originalcolor){if (ie&&(event.fromElement.contains(event.toElement)||source.contains(event.toElement)||source.id=="ignore")||source.tagName=="TABLE")returnelse if (ns6&&(contains_ns6(source, e.relatedTarget)||source.id=="ignore"))returnif (ie&&event.toElement!=source||ns6&&e.relatedTarget!=source)source.style.backgroundColor=originalcolor}// END MENU SCRIPT// BEGIN TOPAD POPUP SCRIPTfunction topAdDisplay(URLtoOpen, windowName, windowFeatures) {newWindow=window.open(URLtoOpen, windowName, windowFeatures);}