
// VIDEO NEWS RELEASES

function launchWindow1() {
  var url = "videos/summer.html";
  var windowName = "Summer";
var winwidth = 638;
var winheight = 320;
var winx  = screen.width/2 - winwidth/2;
var	winy  = screen.height/2 - winheight/2;
  window.open( url, windowName, 
		"left=" + winx + ",top=" + winy + ",screenX=" + winx + ",screenY=" + winy + ",history=no,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=no,resizable=no,width=" +
winwidth + ",height=" + winheight);
 }
 
