function oWindow(WinLocation,WinName,WinWidth,WinHeight) {
	var Condition = "width="+WinWidth+",height="+WinHeight+", scrollbars=yes, status=no, resizable=yes" ;
	var NewWind = window.open(WinLocation,WinName,Condition);
	NewWind.focus();
}
