function ge(e) {
    return document.getElementById(e);
}

//property page functions
 function showProperty(this_property) {
    var t = document.getElementById("listing");
    t.action = "property_details.asp";
    t.property_id.value = this_property;
    t.submit();
}

function submitForm() {
    document.getElementById("listing").submit();
}


// *** DEETE BELOW FOR NEW SITE


//these two funcs handle mouseover highlights for rows in tables
function mOver(row,altText, thisColour) {	
		
		row.bgColor=thisColour;
		row.title= altText;	
}
//the mouse out sets the bg to 'thisColour'
function mOut(row, thisColour){
	row.bgColor=thisColour;
}

function doEmail(thisName, thisDomain,text){
	emailE=thisDomain
	emailE=(thisName + '@' + emailE)
	document.write('<a href="mailto:' + emailE + '">' + text + '</a>')
}

