﻿// JScript File

function NumericOnly($char, $mozChar,$srcCntlID,$isdotneed) {
var x ;
if($mozChar != null)  // Look for a Mozilla-compatible browser
  x=$mozChar;
else  // Must be an IE-compatible Browser
   x=$char; 
var str;
	str=document.getElementById($srcCntlID).value;
	if((x >= 46) && (x < 58))
	{
//		    if(x==9)
//				$RetVal=true;else
			if(x==8)
				$RetVal=true;
		    if(x==47)
				$RetVal=false;			
			else if(x==46)
				{
				  if($isdotneed==true)
				    {
					  if(str.indexOf(".")>=0)
					    $RetVal=false;
					   else		
					    $RetVal=true;
					} else { $RetVal=false; }
				}
			else
				$RetVal=true;
	} else { $RetVal=false; }	
 return $RetVal;
}


 function PrintDoc()
 {
   window.open("Print.aspx","myWindow","height=10, width=10,scrollbars=no, toolbar=no,location=no")
 }

