function DoNav(theUrl)
{
	document.location.href = theUrl;
}

function printView(page, w, h) {
//	var w = 900;
//	var h = 600;
	var windowName = "Cayman_Islands_Port_Authority";
	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+',scrollbars=yes,menubar=no,resizable=yes,toolbar=no,location=no,status=no';
	newWindow=window.open(page, 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 popUp(page, w, h) {
//	var w = 900;
//	var h = 600;
	var windowName = "CIPA";
	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+',scrollbars=yes,menubar=no,resizable=no,toolbar=no,location=no,status=no';
	newWindow=window.open(page, 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 popUpB(page, w, h) {
//	var w = 900;
//	var h = 600;
	var windowName = "CIPA";
	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+',scrollbars=yes,menubar=no,resizable=no,toolbar=no,location=no,status=no';
	newWindow=window.open(page, 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
}
