closetime = 0;
  function popInfoWin(url)
  {
	window.open('copy-pop.asp?id='+url,'faxorder' + parseInt(Math.random() * 1000000),'directories=0,toolbar=0,menubar=0,personalbar=0,location=0,scrollbars=0,status=0,resizable=0,height=375,width=400,screenX=20,screenY=20,left=20,top=20');
  }
  
  function resizePopUp() {
	  newWidth = Number(document.getElementById('contents').clientWidth)+50;
	  newHeight = Number(document.getElementById('contents').clientHeight)+100;
	  if (newWidth != 0 && newWidth >= 144) {
	  	 window.resizeTo(newWidth,newHeight);
		 //window.scrollbars.visible=false;
	  }
  }
function numericOnly(sString)
{
   var sNumericOnly = "";
   var sValidChars = "1234567890+-";
   for (var iCharPos = 0; iCharPos < sString.length; iCharPos++)
   {
      if (sValidChars.indexOf(sString.charAt(iCharPos)) != -1)
      {
         sNumericOnly = sNumericOnly + sString.charAt(iCharPos);
      }
   }
   //alert("sNumericOnly = " + sNumericOnly);
   return sNumericOnly;
}