function navscreen(thepage){
  windowBigPage=window.open(thepage+' POPUP.htm', thepage.replace(/\s/g,""), 'resizable,scrollbars,toolbar,menubar,width=610');
  windowBigPage.document.close();
  windowBigPage.focus();
  if (typeof(parent.main)=="object") {
    thepage = thepage.replace(/\s/g,"");
    parent.main.document.getElementById(thepage).style.background="#ffffde";
  }
}
function smallscreen(thepage){
  windowSmallPage=window.open(thepage+' POPUP.htm', thepage.replace(/\s/g,""), 'resizable,scrollbars,toolbar,menubar,height=300,width=610');
  windowSmallPage.document.close();
  windowSmallPage.focus();
  if (typeof(parent.main)=="object") {
    thepage = thepage.replace(/\s/g,"");
    parent.main.document.getElementById(thepage).style.background="#ffffde";
  }
}
function GoTo(theName) {
  theName = theName.replace(/\s/g,"");
  if (typeof(parent.main)=="object") {
    parent.main.location.href="details.htm#" + theName;
    parent.main.document.getElementById(theName).style.background="#ffffde";
  } else { alert(theName + " article would now be highlighted.") }
}
function website(thepage){
    windowBigPage=window.open(thepage, "", 'resizable,scrollbars,toolbar,menubar,width=810');
    windowBigPage.document.close();
    windowBigPage.focus();
}

function confirm(thepage){
  windowBigPage=window.open(thepage, 'LittleWindow', 'resizable,scrollbars,height=500,width=500');
  windowBigPage.document.close();
  windowBigPage.focus();
}

function sendmail(user,site){
  location.href="mailto:" + user + "@" + site ;
}