function popCalendar(txt)
{
window.open('/Calendar.aspx?textbox='+txt,'Calendar','width=250,height=250,left=250,top=150');
}


function CallPrint(strid)
{
   var WinPrint = window.open('/PrintSearchDetails.aspx','PrintRecordDetails','left=32,top=24,width=552,height=400,toolbar=0,scrollbars=1,status=0');
}


function clickButton(e, buttonid)
{ 
      var evt = e ? e : window.event;

      var bt = document.getElementById(buttonid);

      if (bt)
      { 

          if (evt.keyCode == 13)
          { 

                bt.click(); 

                return false; 

          } 

	  } 

}


