//RELOAD FOR NETSCAPENS4 = document.layers;	if (NS4) {		origWidth = innerWidth;		origHeight = innerHeight;	}function reDo() {	if (innerWidth != origWidth || innerHeight != origHeight)		location.reload();	}if (NS4) onresize = reDo;//SHOW & HIDEfunction show(id) { 		if (document.getElementById) {		obj = document.getElementById([id]);		obj.style.visibility="visible";	}	else if (document.layers && document.layers[id]) {		document.layers[id].visibility = 'visibile';	}	else {		obj = document.all[id];		obj.style.visibility = "visible"	}}function hide(id) { 		if (document.getElementById) {		obj = document.getElementById([id]);		obj.style.visibility = 'hidden';	}	else if (document.layers && document.layers[id]) {		document.layers[id].visibility = 'hidden';	}	else {		obj = document.all[id];		obj.style.visibility = 'hidden';	}}function OpenWin(imageSrc) { //  zoom=window.open(URL,"zoom",'height=380,width=380,status=yes,resizable=yes,toolbar=no,scrollbars=yes');    fileName = 'template.html?' + escape(imageSrc);    myWindowHandle = window.open(fileName,'windowName','height=1,width=1,directories=no,location=no,menubar=no,scrollbars=no,status=no,toolbar=no,resizable=yes');}