// JavaScript Document
function writeProfileString(id,area,status,price,lease_price,open_house){
	var bgcolourTemp = '#777777';
	var fontColour;
	if (status=="NEW"){
		if (open_house!=""){ // NEW and open house
			if (lease_price!=""){ // NEW and lease and open house
				fontColour = '#b3ecc1';
				status = 'OPEN';
			} else { // just NEW and open house
				fontColour = '#b3ecc1';
				status = 'OPEN HOUSE';
			}
		} else { //just NEW
			fontColour = '#d6b4f8';
		}
	} else if (status=="LEASE"){ //outright LEASE
		if (open_house!=""){ //LEASE and open house
			fontColour = '#b3ecc1';
			status = 'OPEN HOUSE';
		} else { //just LEASE
			fontColour = '#d6b4f8';
		}
	} else if (status=="SOLD") { //SOLD
		fontColour = '#f47e72';
	} else { //ARCHIVE
		fontColour = '#ffffff';
	}
	return '<table width="220" border="0" cellspacing="0" cellpadding="0"><tr><td class="listarea" align="center" bgcolor="#777777" height="20">'+area+'</td></tr><tr><td><a href="profile.php?id='+id+'"><img src="listings/'+id+'_01_tn.jpg" width="220"/></a></td></tr><tr><td class="listprice" align="right" bgcolor="#777777" height="20"><table width="220" border="0" cellspacing="0" cellpadding="0"><tr bgcolor="'+bgcolourTemp+'"><td align="left">&nbsp;<span style="color:'+fontColour+'"><B>'+status+'</B></span></td><td align="right"><span>'+price+'</span>&nbsp;</td></tr></table></td></tr></table>';
}