// JavaScript Document

function NewWindow(mypage, myname, w, h, menu, tool, location, skroll) { 
	var winl = (screen.width - w) / 2; 
	var wint = ((screen.height - h)+17) / 2; 
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',menubar='+menu+',toolbar='+tool+',location='+location+',scrollbars='+skroll+'';
	win = window.open(mypage, myname, winprops);
	if (parseInt(navigator.appVersion) >= 4) {  
		win.window.focus(); 
	} 
}