<!--
bBool=false
var copiedtext=""
var tempstore=""


function initiatecopy() {
bBool=true;
}


function copyit() {
if (bBool) {
tempstore=copiedtext
document.execCommand("Copy")
copiedtext=window.clipboardData.getData("Text");
if (tempstore!=copiedtext) {

}
bBool=false;
}
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->