  //Close window ...
  function wclose(){
    parent.parent.parent.close();
  }
  //Opend a popup window
  function popup(url,wn){
    h=450;
    w=700;         
    prop='height='+h+',width='+w+',menubar=1,toolbar=1,resizable=1,scrollbars=1,status=1,dependent=0,top=0,left=0';
    obj=window.open(url,wn,prop);
    obj.focus();     
  }
  function sendMail(to,subject){
	window.location = 'mailto:' + to + '?subject=' + subject;
  }
