var pressWindow;function openSite ( theUrl ) {	theWidth = 920;	theHeight = 600;	leftCoord = (screen.width/2) - (theWidth/2);	topCoord  = (screen.height/2) - (theHeight/2) - 20;	pressWindow = window.open(theUrl,"presswindow","width="+theWidth+	",height="+theHeight+",top="+topCoord+",left="+leftCoord+	",menubar=no,toolbar=no,location=no,status=no,directories=no,resizable,scrollbars");	pressWindow.focus();	return false;}function toggleDisplay (theId) {	if (document.getElementById(theId).style.display != 'block') {		document.getElementById(theId).style.display = 'block';	} else document.getElementById(theId).style.display = 'none';	return false;}