// JavaScript Documentfunction openWin(strFile) {		 	var myWin = window.open(strFile,'home','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width=350,height=530')}if (document.all) { 	layerRef='document.getElementById' 	styleRef='.style.' } else if (document.layers) { 	layerRef='document.getElementById' 	styleRef='.' }else{	layerRef='document.getElementById' 	styleRef='.style.' }// show DIVfunction showLayer(lname) {		eval(layerRef+'("'+lname+'")'+styleRef+'display="block"');}	// hide DIVfunction hideLayer(lname) {		eval(layerRef+'("'+lname+'")'+styleRef+'display="none"');}