//--- startup ------------------------------------

function startup() {
	checkRes();
	Pop_Go();
//	window.status = "V&A Waterfront - Where the world meets at the water's edge";
}


//--- Screen resolution -----------------------------

function checkRes() {
	if ((screen.width < 780) || (screen.height < 550))
		alert('Please note: Our site is optimized for a Screen Resolution of 800x600 or larger. Please adjust your settings for optimal viewing.');
} 

//--- Popup windows ----------------------------------

function popwin1(url,name,w,h) {
	var winW = (screen.width - w) / 2;
	var winH = (screen.height - h) / 2;
	window.open(url,name,'width='+w+',height='+h+',top='+winH+',left='+winW+',toolbar=no,location=no,directories=no,menubar=no,status=no,scrollbars=no,resizable=no');
}

function popwin2(url,name,w,h) {
	var winW = (screen.width - w) / 2;
	var winH = (screen.height - h) / 2;
	window.open(url,name,'width='+w+',height='+h+',top='+winH+',left='+winW+',toolbar=no,location=no,directories=no,menubar=no,status=no,scrollbars=yes,resizable=yes');
}
