// JavaScript Document
function openNewWindow(URLtoOpen, windowName, w, h) {
	h = h * 1.0 + 40 // convert to number and then add offset
	windowName = "CAMANA_BAY"; // force the window name
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0; // centre horizontally
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0; // centre vertically
	windowFeatures = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',toolbar=no,scrollbars=no,resizable=yes,status=no';
	newWindow=window.open(URLtoOpen, windowName, windowFeatures);
	newWindow.moveTo(LeftPosition,TopPosition) // reposition the open window
	newWindow.resizeTo(w,h) // resize the open window
	newWindow.focus(); // bring the window to the front
}

function openNewWindow_scroll(URLtoOpen, windowName, w, h) {
	h = h * 1.0 + 40 // convert to number and then add offset
	windowName = "CAMANA_BAY"; // force the window name
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0; // centre horizontally
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0; // centre vertically
	windowFeatures = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',toolbar=no,scrollbars=yes,resizable=yes,status=no';
	newWindow=window.open(URLtoOpen, windowName, windowFeatures);
	newWindow.moveTo(LeftPosition,TopPosition) // reposition the open window
	newWindow.resizeTo(w,h) // resize the open window
	newWindow.focus(); // bring the window to the front
}
