// JavaScript Document
if(document.uniqueID){document.body.oncontextmenu=function(){return false;}; document.body.ondragstart=function(){return false;}; document.body.onselectstart=function(){return false;}; document.body.onbeforecopy=function(){return false;}; document.body.onselect=function(){document.selection.empty();}; document.body.oncopy=function(){document.selection.empty();}; }else{document.documentElement.oncontextmenu=function(){return false;};document.documentElement.ondragstart=function(){return false;};document.documentElement.onselectstart=function(){return false;};document.documentElement.onbeforecopy=function(){return false;}; document.documentElement.onselect=function(){window.getSelection().removeAllRanges();};document.documentElement.oncopy=function(){window.getSelection().removeAllRanges();}; }


 function ImgClickOpen()
 {
   document.getElementById("open").style.display="none";
    document.getElementById("close").style.display="block";
   
    document.getElementById("Flashtable").style.display="block";
 }
 function ImgClickClose()
 {
    document.getElementById("open").style.display="block";
    document.getElementById("close").style.display="none";
    document.getElementById("Imgtable").style.display="block";
    document.getElementById("Flashtable").style.display="none";
 }