// JavaScript Document
    function  validate()
    {
    var t1;
    t1=document.getElementById ('txtuser').value;
    var t2=document.getElementById ('txtpwd').value;
   if (t1=='admin' && t2=='admin')
   {
   lblmsg.innerText ="";
    window.open('http://dindigulima.com/dgldrs/dr_de.xml');
	
   }
   else
   {
  lblmsg.innerText ="Invalid User";
   }
    }