function NowLoading(){
	if(document.all){
		document.all("now_loading").style.visibility = 'hidden';
	}else if(document.getElementById){
		document.getElementById("now_loading").style.visibility = 'hidden';
	}
}
if(document.all || document.getElementById){
	document.write('<DIV ID="now_loading"><b>Now Loading Golf Course Listings...</b></DIV>');
	window.onload = NowLoading;
}
