function showLAYER(layName){
	if(document.layers)document.layers[layName].visibility='show'
	if(document.all)document.all(layName).style.visibility='visible'
	if(document.getElementById)document.getElementById(layName).style.visibility='visible'
}

function hideLAYER(layName){
	if(document.layers)document.layers[layName].visibility='hide'
	if(document.all)document.all(layName).style.visibility='hidden'
	if(document.getElementById)document.getElementById(layName).style.visibility='hidden'
}

var initWindowWidth = window.innerWidth;
var initWindowHeight = window.innerHeight;
function fixWindow(){
	if(document.layers){
		if(initWindowWidth != window.innerWidth || initWindowHeight != window.innerHeight)location.reload(location.href);
	}
}

function popwin(suburl){
	var win=window.open(suburl,"new_Window","toolber=no,location=0,directories=no,status=no,scrollbars=yes,resizable=1,width=700,height=550");
}
