function wopen(){
window.open("mogla.html","mogla","toolbar=no,menubar=no,scrollbars=no,width=290,height=190")
}
function OpenWinMobile(){
    win=window.open("mobile.html","mobile","toolbar=no,menubar=no,scrollbars=yes,width=450,height=400");
}
function CloseWin(){
    window.close();
}

function OpenMenu(id){
	obj=(document.all)?document.all(id):((document.getElementById)?document.getElementById(id):null);
	if(obj)obj.style.visibility="visible";
}
function CloseMenu(id){
	obj=(document.all)?document.all(id):((document.getElementById)?document.getElementById(id):null);
	if(obj)obj.style.visibility="hidden";
}