function changeLoc(address){
  window.location.href = address;
}

function onOver(td){
  if(document.getElementById||(document.all && !(document.getElementById))){
  	  td.className="leftMenuOver";
  }
}
function onOut(td){
  if(document.getElementById||(document.all && !(document.getElementById))){
  	  td.className="leftMenu";

  }
}

function onOverAd(td){
  if(document.getElementById||(document.all && !(document.getElementById))){
  	  td.className="adOver";
  }
}

function onOutAd(td){
  if(document.getElementById||(document.all && !(document.getElementById))){
  	  td.className="adtable";

  }
}


  
function copyToClipboard(pre){
  if(document.getElementById||(document.all && !(document.getElementById))){
  textarea1.value = pre.innerText;
  var Copied = textarea1.createTextRange();
  Copied.execCommand("Copy");
  alert("Copied to clipboard.");
  

  }
}

function focusinput( elem ){
elem.className = 'flatinputfocus';
return;
}

function blurinput( elem ){
elem.className = 'flatinput';
}
