  var w=370;                        /* popup window width*/
  var h=230;                        /* popup window height*/

  var l=(screen.width-w)/2;         /*this centers horizontally*/
  var t=(screen.height-h)/2;        /*this centers vertically*/

  var url="http://www.aquabatix.com/videos/aquabatix.mov";

  var features="left="+l+",top="+t+",width="+w+",height="+h+",scrollbars=auto";

function popItUp() { 
     window.open(url,"",features);
 }


var stw=370;                        /* popup window width*/
var sth=230;                        /* popup window height*/

var stl=(screen.width-stw)/2;         /*this centers horizontally*/
var stt=(screen.height-sth)/2;        /*this centers vertically*/

var sturl="http://www.aquabatix.com/videos/EA_Tank.mov";

var stfeatures="left="+stl+",top="+stt+",width="+stw+",height="+sth+",scrollbars=auto";

function popItUpSyncTank() { 
     window.open(sturl,"",stfeatures);
 }


var fvw=370;                        /* popup window width*/
var fvh=230;                        /* popup window height*/

var fvl=(screen.width-fvw)/2;         /*this centers horizontally*/
var fvt=(screen.height-fvh)/2;        /*this centers vertically*/

var fvurl="http://www.aquabatix.com/videos/aquabatix_long.mov";

var fvfeatures="left="+fvl+",top="+fvt+",width="+fvw+",height="+fvh+",scrollbars=auto";

function popItUpFullVideo() { 
     window.open(fvurl,"",fvfeatures);
 }