function fullScreen(theURL) {
window.open(theURL, '', 'fullscreen=yes, scrollbars=no');
}

function popup(theURL) {
            if (self.screen)
			{ 
            	sw = screen.width
            	sh = screen.height
				w = 750
				h = 465
				cx = (.5*sw) - (w*.5)
				cy = (.5*sh) - (h*.5)
                var size = 'width='+w+','+'height='+h+',' + 'screenX=' +cx+','+'screenY='+cy+','+'left='+cx+','+'top='+cy
            }

 			Pop=window.open(theURL,'',size);   
}

function launch(url) {
  self.name = "opener";
  remote = open(url, "remote", "width=640,height=510,left=100,top=100");
}

function launch2(url) {
  self.name = "opener2";
  remote = open(url, "remote2", "width=256,height=208,left=100,top=100");
}