//Handle Errors
//function catchErr() {return true}
//window.onerror=catchErr;


//Manage Shortcut Key
//var vroot = "/w4t";
var kys="";
var loginkey="9696" 
var logoutkey="126126"
document.onkeypress=catchKey 

function catchKey(e) { 
  if(e) {
    kys+=e.charCode;
  } else {
    kys+=event.keyCode;
  }

  if(kys.indexOf(loginkey)!=-1){kys="";gotoManage()}
  if(kys.indexOf(logoutkey)!=-1){kys="";gotoLogout()}
} 

function gotoManage() {
  window.location = vroot+"/manage";
}
  
function gotoLogout() {
  window.location = vroot+"/logout.aspx";
}

function printThisPage() {
  window.print();
}

function emailThisPage() {
  var tmp = "";
  tmp += "mailto:?subject=Here\'s a link I thought you might like to see";
  tmp += "&body=See it at " + location.href;
  location.href = tmp;
}

function toggleElement(id) {
  var el = document.getElementById(id);
  (el.style.display=='none')?el.style.display = 'block':el.style.display = 'none';
}

function buyNow() {
  window.open(vroot+"/purchase","purchaseWindow","width=815,height=650,menubar=yes,scrollbars=yes,resizable=yes,status=yes,toolbar=yes;");
}
