//<script language="javascript">
function newWin(url,height,width) {
	var newWindow;
	var scroll
	//Set Win Prop
	var top = screen.availHeight/2 - height/2; // center
	var left = screen.availWidth/2 - width/2; // center
	var 
	//Define Window Properties
	winProps = "height=" + height + ",width=" + width + ",top=" + top + ",left=" + left + ",menubar=no,scrollbars=yes,resizable=no,status=no,toolbar=no";
	
	window.open(url,"ChildWindow",winProps);

}

function ParentChange(x){
	window.parent.opener.location.href = x;
	}
	
function popupform(myform, windowname, height, width) {
	if (! window.focus)return true;
	//Set Win Prop
	var top = screen.availHeight/2 - height/2; // center
	var left = screen.availWidth/2 - width/2; // center
	var 
	//Define Window Properties
	winProps = "height=" + height + ",width=" + width + ",top=" + top + ",left=" + left + ",menubar=no,scrollbars=yes,resizable=yes,status=no,toolbar=no";
	window.open('', windowname,winProps);
	myform.target=windowname;
	return true;
	}
	


function Minimize()
{
window.innerWidth = 100;
window.innerHeight = 100;
window.screenX = screen.width;
window.screenY = screen.height;
alwaysLowered = true;
}

function Maximize()
{
window.innerWidth = screen.width;
window.innerHeight = screen.height;
window.screenX = 0;
window.screenY = 0;
alwaysLowered = false;
}

function zMinimize()
{
window.resizeTo(50,50);

}





<!--
function ShowMainWindow(info) {
News=window.open(info,"stilltime","width=583,height=643",scrollbars, resizable); News.window.focus() }
// -->



//</script>