function Show(divid) {if(eval("document.getElementById")) {//alert("The right thing");// method is supported, use it//alert(document.getElementById(divid).style.display);if(document.getElementById(divid).style.display=='none') {document.getElementById(divid).style.display='';} else {if(document.getElementById(divid).style.display==''){document.getElementById(divid).style.display='none';} else {//fallback for Opera and the likes//window.open(divid+'.html',divid,'scrollbars=no,resizable=no,toolbar=no,status=no,width=500,height=400,top=10,left=10,screenX=10,screenY=10');	}	}	} else {//alert("The wrong thing");// method is not supported,try "all"if(eval(document.all)) {//alert("Poor MSIE");	var code='\	if (document.all.'+divid+'.style.display=="")\	{\    document.all.'+divid+'.style.display="none";\	}\	else {\	document.all.'+divid+'.style.display="";\	}';	eval(code);		} else {	//alert("Poor Netscape");//fall-back for old Netscape e.d.//window.open(divid+'.html',divid,'scrollbars=no,resizable=no,toolbar=no,status=no,width=500,height=400,top=10,left=10,screenX=10,screenY=10');	};}		} // End of Show