// 
var port_items = getPortItems();
function mailer(){
	if(w!=undefined && !w.closed){
		w.close();
	}
	var height = 365;
	var width = 355;
	var left = ((screen.width)-width)/4;
	var top = ((screen.height)-height)/2;
	w = window.open("mailer.php","myenquiry","status=no,menubar=no,resizable=yes,location=no,toolbar=no,scrollbars=yes,width="+width+", height="+height+",screenX="+left+",screenY="+top+",top="+top+",left="+left);
	if(w!=undefined){
		w.focus();
	}
}
var params = parseQuery( location.search.substring(1) ); // load the get params
if(params['do']!=undefined){ // any onload actions requested
	switch(params['do']){
		case 'se':
		my_enquiry();
		break;
	}
}
function showEmailAddress(){
	document.write('<a href="mailto:info@portlantis.com">info@portlantis.com</a>');
}