var myWindow;

function doVideoPopup(){
var sWidth=500;
var sHeight=400;
var sLeft=(screen.width/2)-(sWidth/2);
var sTop =(screen.height/2)-(sHeight/2);
myWindow=window.open('files/3d_exterior_video.mov','ExteriorVideo','width='+sWidth+',height='+sHeight+',top='+sTop+',left='+sLeft+',toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=0,screenX='+sTop+',screenY='+sLeft);
myWindow.focus();}