﻿// JScript File
function clearTextBoxes(){
  for (var cnt=0; cnt < clearTextBoxes.arguments.length; cnt++){
  document.getElementById(clearTextBoxes.arguments[cnt]).value = "";
					}
}
  
  function closeWindow(){
	//licPopUp.close;
	licPopUp=window.open("licensePopUp.aspx",'licPopUp',"width=1 ,height=1,resizable=yes,menubar=no,toolbar=no,scrollbars=no,status=no,location=no,top=40,left=450");
	licPopUp.close();
	return(false);
	}
	
  function newWindow1(page, w, h){
	//licPopUp.close;
	licPopUp=window.open(page,'licPopUp',"width="+w+",height="+h+",resizable=yes,menubar=no,toolbar=no,scrollbars=no,status=no,location=no,top=10,left=10");
	licPopUp.focus();
	return(false);
}

