function mailus(){ 
window.location = "mailto:support@hrithikrules.com?subject=Feedback on the Hrithik site";
}
function overlink(message){
window.status = message;
}

function validateKey (evt) 
   {
       if (evt.keyCode == '17')
       {
            alert("Hrithik Rules!");
            return false;
       }
       return true;
  } 


function openwin(URL,dname){
// does not start with http
if (URL.indexOf('http:',0)) {
  if (URL.substring(URL.lastIndexOf(".txt")) == ".txt")
    newURL = "../filmography/displayArt.php\?fname="+URL+"&movname="+dname;
  else if (URL.substring(URL.lastIndexOf(".enc")) == ".enc")
    newURL = "../filmography/displayEnc.php\?fname="+URL+"&movname="+dname;
  else
    newURL = URL;
}
else {
newURL = URL;
}

aWindow=window.open(newURL,"thewindow", "width=800,height=600,scrollbars=yes,status=no,resize=yes,toolbar=no");
}