
function loginvalidator()
{
var username=document.getElementById('ctl00_ContentPlaceHolder1_txtusername');
var pwd=document.getElementById('ctl00_ContentPlaceHolder1_txtpassword');

    if (username.value=='')
   {
    alert('Enter user name!')
    username.select();
    return false;
   }
       
   if (pwd.value=='')
   {
    alert('Enter password!')
    pwd.select();
    return false;
   }
 }

  
function clearinfo()
   {
      var uname=document.getElementById('ctl00_ContentPlaceHolder1_txtusername');
      var pwd=document.getElementById('ctl00_ContentPlaceHolder1_txtpassword');
      pwd.value='';
      uname.value='';
      return false;
   }
   
function relocator()
{
window.location='http://www.paradiseresortindia.com/index.htm';
}