// JavaScript Document
function openScreenShot(url) {// landscape photo
   self.name = "screenshot";
   remote = open(url, "remote", "screenX=0,left=0,screenY=0,top=0,width=758,height=500,buttons=no,scrollbars=no,location=no,menubar=no,resizable=yes,status=no,directories=no,toolbar=no");
   remote.focus(); 
}
function openDemo() {// flash projectroom demo
   self.name = "screenshot";
   remote = open("flashdemo.htm", "remote", "screenX=0,left=0,screenY=0,top=0,width=1058,height=800,buttons=no,scrollbars=yes,location=no,menubar=no,resizable=yes,status=no,directories=no,toolbar=no");
   remote.focus(); 
}