<!--

function openMailToFriend() {

  // Mail to Friend modal dialog box
  mailtofriend=dhtmlmodal.open("mail2friend", "iframe", "/mailtofriend.php", "Mail this page to a friend", "width=600px,height=450px,center=1,resize=1,scrolling=0", "recal")
  
  mailtofriend.onclose=function(){ 
    //Define custom code to run when window is closed
    //alert('You closed the window');
    return true; //Allow closing of window in both cases
  }

}


//-->