<!--
function newWindow(theURL,winName, w, h) {
  r = (typeof(w) == "undefined") ? 'yes' : 'no';
  w = (typeof(w) == "undefined") ? 600 : w;
  h = (typeof(h) == "undefined") ? 685 : h;
  
  var t = (screen.height - h) / 2;
  var l = (screen.width - w) / 2;
  var n = window.open(theURL,winName,'scrollbars=yes,width=' + w + ',height=' + h + ',resizable=' + r + ',location=no,menubar=yes,top=' + t + ',left=' + l);
  n.focus();  
}

function openHotelVideo(plantid) {
	//window.open('http://video.prevucorporation.com/popup.cfm?pc_id=1214&plant_id=' + plantid, '', 'resizable=no,noscrollbars,status=yes'); 
	window.open('http://video.prevucorporation.com/popup.cfm?pc_id=1214&plant_id=' + plantid, '', 'resizable=no,noscrollbars,status=yes'); 
	return false;
}

function openHotelGallery(theURL) {
	window.open(theURL, 'hotelgallery', 'width=610,height=490'); 
	return false;
}
//-->