<!-- 

function maxWindow(){
	window.moveTo(0,0);
	if (document.all){
	  top.window.resizeTo(screen.availWidth,screen.availHeight);
	} else if (document.layers||document.getElementById){
		if (top.window.outerHeight<screen.availHeight||top.window.outerWidth<screen.availWidth){
			top.window.outerHeight = screen.availHeight;
			top.window.outerWidth = screen.availWidth;
		}
	}
}

function popup(theURL,winName,features) { 
  window.open(theURL,winName,features);
}

function popupCenter(theURL,winName,w,h) {
	var iMyWidth;
	var iMyHeight;
	iMyWidth = (window.screen.width/2) - ((w/2) + 10);
	iMyHeight = (window.screen.height/2) - ((h/2) + 50); 
	var win2 = window.open(theURL,winName,"toolbar=no,location=no,status=no,menubar=no,scrollbars=1,resizable=yes,height="+h+",width="+w+",left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight);
	win2.focus();
}

function popupCenterNoScroll(theURL,winName,w,h) {
	var iMyWidth;
	var iMyHeight;
	iMyWidth = (window.screen.width/2) - ((w/2) + 10);
	iMyHeight = (window.screen.height/2) - ((h/2) + 50); 
	var win2 = window.open(theURL,winName,"toolbar=no,location=no,status=no,menubar=no,scrollbars=0,resizable=no,height="+h+",width="+w+",left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight);
	win2.focus();
}


-->