function getMenuPos() {  
    if ( window.innerWidth ) { document.getElementById("menuPos").style.left = String(Math.round((window.innerWidth - 730)/2)) + "px"; }  
    else if ( document.documentElement && document.documentElement.clientWidth != 0 ) { document.getElementById("menuPos").style.left = String(Math.round((document.documentElement.clientWidth - 730)/2)) + "px"; }  
    else if ( document.body ) { document.getElementById("menuPos").style.left = String(Math.round((document.body.clientWidth - 730)/2)) + "px"; }  
} 

function setH1Pos() {  
    if ( window.innerWidth ) { 
	document.getElementById("h1").style.left = String(Math.round((window.innerWidth - 730)/2+8)) + "px";
	document.getElementById("h1").style.top = "-6px";
	}  
    else if ( document.documentElement && document.documentElement.clientWidth != 0 ) { 
	document.getElementById("h1").style.left = String(Math.round((document.documentElement.clientWidth - 730)/2+8)) + "px"; 
	}  
    else if ( document.body ) { 
	document.getElementById("h1").style.left = String(Math.round((document.body.clientWidth - 730)/2+8)) + "px"; 
	}  
} 

function newsExec(num) { 
	var win01;
	var add01;
	
	add01 = "./news/" + num + ".html"
	win01 = window.open(add01 , "news" , "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no width=660 , height=460");
	win01.focus();
}

