//
//  ----------------------------------------
//  Open a Browser Window
//  ----------------------------------------
//

<!--
function openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

//
//  ----------------------------------------
//  Mails the current page	
//  ----------------------------------------
//
function mailThisPage()
{
  mail_str = "mailto:?subject="+ document.title;
  mail_str += "&body= I recommend you to visit "+document.title;
  mail_str += ". Check this at " + location.href; 
  location.href = mail_str;
}
-->


