// JavaScript Document
	function openpropertydetails(url)
	{ //Define arbitrary function to run desired DHTML Window widget codes
		ajaxwin=dhtmlwindow.open("ajaxbox", "ajax", url, "PROPERTY DETAILS...", "width=500px,height=400px,left=300px,top=100px,resize=0,scrolling=1")
		ajaxwin.onclose=function()
		{
			return true;
			//return window.confirm("Are you sure you want to close!!")
		} //Run custom code when window is about to be closed
	}
	function openpropertysmspage(url)
	{ //Define arbitrary function to run desired DHTML Window widget codes
		ajaxwin=dhtmlwindow.open("ajaxbox", "ajax", url, "SMS ENQUIRY FOR PROPERTY", "width=400px,height=300px,left=300px,top=100px,resize=0,scrolling=1")
		ajaxwin.onclose=function()
		{
			return true;
			//return window.confirm("Are you sure you want to close!!")
		} //Run custom code when window is about to be closed
	}
	function openpropertyemailpage(url)
	{ //Define arbitrary function to run desired DHTML Window widget codes
		ajaxwin=dhtmlwindow.open("ajaxbox", "ajax", url, "EMAIL ENQUIRY FOR PROPERTY", "width=400px,height=400px,left=300px,top=100px,resize=0,scrolling=1")
		ajaxwin.onclose=function()
		{
			return true;
			//return window.confirm("Are you sure you want to close!!")
		} //Run custom code when window is about to be closed
	}	
