// JavaScript Document
function topZIdx(o){
	o.style.zIndex=1000;
	}
function resetZIdx(o){
	o.style.zIndex=0;
	}
function printFriendly(){
	// Date Created : 2004-12-25
	s1='Aquasun Estates - www.aquasunestates.com';
	sPrint = '';
	sPrint += '<html><head><title>'+s1+'</title><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">';
	sPrint += '<link href="/m/1.css" rel="stylesheet" type="text/css" /><style type="text/css">body,td,th{font-family: Tahoma;font-size:11px;color:#333333;}</style></head>';
	sPrint += "<body>";
	if (document.getElementById("content")){
		sPrint += document.getElementById("content").innerHTML;
	}else if (document.getElementById("cabListing")){
		sPrint += document.getElementById("cabListing").innerHTML;
	}else{
		sPrint += '<h2>This page has no printable version. In order to print this page out, close this windows first then press CTRL+P keys while viewing the parent window.</h2>';
	}
	sPrint += '<scr'+'ipt>alert("Press CTRL+P keys to open print dialouge.");</scr'+'ipt>';
	sPrint += '</body></html>';
	p=window.open('','PrintPreview','width=530,height=600,scrollbars=yes');
	p.document.write(sPrint);
}
