// JavaScript Document

// Opens the pop up windows
function openArticleWindow(url,width,height) {
	width = width ? width : '453'; height = height ? height : '453';
	var win = window.open(url, 'SeaLinkPopUp', 'width='+width+',height='+width+',scrollbars=yes,resizable=yes');
	win.focus();
	return false;
}

function openBrochureWindow(url,width,height) {
	width = width ? width : '653'; height = height ? height : '453';
	var win = window.open(url, 'SeaLinkPopUp', 'width='+width+',height='+width+',scrollbars=yes,resizable=yes');
	win.focus();
	return false;
}

function openWindow(theURL,winName,features) {
  var win = window.open(theURL,winName,features);
  win.focus();
  return false;
}