
// JScript File

function printticket() 
{
     var printWindow;
     var Transactionid=document.getElementById('ctl00_cphsharmaTransports_tdprint');
     var windowUrl = 'about:blank';
     var uniqueName = new Date();
     var windowName = 'Print' + uniqueName.getTime();
     var printWindow = window.open(windowUrl, windowName, 'left=50000,top=50000,width=0,height=0');	 
     printWindow.document.write(Transactionid.innerHTML);
     printWindow.document.close();
     printWindow.focus();
     printWindow.print();
     printWindow.close();
} 

        function ValidateForm()
        {
            if (isEmpty(document.getElementById('ctl00_cphsharmaTransports_txtdate'), "Date Must'nt be Empty", document.getElementById('ctl00_cphsharmaTransports_lblmsg')))
			    {
			     //alert(document.getElementById('ctl00_cphsharmaTransports_txtdate').value);   
                	     //alert(document.getElementById('ctl00_cphsharmaTransports_lblmsg'));   
			    return true;
			    }			
            return false;
        }
