function OpenWindow(strURL, strTitle, intHeight, intWidth){
	var intWindowLeft
	var intWindowTop
	var msgWindow			
	intWindowLeft = (screen.width - intWidth) / 2;
	intWindowTop = (screen.height - intHeight) / 2;	
	msgWindow = window.open("/ECO/WindowShowModal.asp?url="+strURL+"&title="+strTitle,"","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,Width=" + intWidth + ",Height=" + intHeight + ",left=" + intWindowLeft + ",top=" + intWindowTop);
}

function OpenResizableWindow(strURL, strTitle, intHeight, intWidth){
	var intWindowLeft
	var intWindowTop
	var msgWindow			
	intWindowLeft = (screen.width - intWidth) / 2;
	intWindowTop = (screen.height - intHeight) / 2;	
	msgWindow = window.open("/ECO/WindowShowModal.asp?url="+strURL+"&title="+strTitle,"","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,Width=" + intWidth + ",Height=" + intHeight + ",left=" + intWindowLeft + ",top=" + intWindowTop);
}
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;
    	}
  }
}

