function OpenNewWindow(mypage,w,h,myname){
	settings='height='+h+',width='+w+',scrollbars=yes,toolbar=yes,location=yes,status=yes,menubar=yes,resizable=yes,dependent=yes'
	win=window.open(mypage,myname,settings)
	if(parseInt(navigator.appVersion) >= 4){win.window.focus();}
}

function popupCenter(url, name, width, height, sbars)
{
	var left = (screen.width - width) / 2;
	var top  = (screen.height - height) / 2;
	var options = "left=" + left + ",top=" + top +",width=" + width + ",height=" + height + ",scrollbars=" + sbars + ",resizable=1" + ",status=1";
	newWin = window.open(url, name, options);
	return newWin.focus();
}
