// Showcase global scripts//// Make sure that any functions added to this file have a unique// name since there may be scripts in the individual pages.function small_window(myurl) {//	alert (myurl);	if (navigator.platform == "MacPPC") {		openurl = "";	} else {		openurl = "blank.html";	}	myopen = window.open(openurl, "Script", 'width=230,height=590,toolbar=no,menubar=no,location=no,directories=no');	myopen.location = myurl;}function popup_window(displaytext) {	return overlib(displaytext,WIDTH,'270',HEIGHT,'90',BGCOLOR,'cc9966',FGCOLOR,'fffaf0',FIXX,'-1',FIXY,'-1');}function popup_click_window(displaytext) {	return overlib(displaytext, CAPTION, 'Showcase Synopsis', CENTER, WIDTH,'400',HEIGHT,'50',FIXX,'-1',FIXY,'-1',NOCLOSE);}function search_toggle() {	if (document.getElementById("searchWindow").style.display == "block") {		document.getElementById("searchWindow").style.display = "none";	} else {		document.getElementById("searchWindow").style.display = "none";		document.getElementById("searchWindow").style.display = "block";		document.getElementById("query").focus();	}}
