//////////////////////////////////////////////////////
//RESIZE IFRAME
//////////////////////////////////////////////////////
function js_resizeIframe() {

	var info_iframe = false;

	info_iframe = document.getElementById('property_iframe');
	if (!info_iframe) info_iframe = document.getElementById('direct_display_iframe');

	if (info_iframe) {
		var the_height = info_iframe.contentWindow.document.body.scrollHeight;
		info_iframe.height = the_height;
	}

} 
//////////////////////////////////////////////////////
//NAME: js_userAlert()
//PURPOSE: Updates DOM element with user alert
//ARG: type, text
//RET: 
//NOTE:
//DLM: 121007
//////////////////////////////////////////////////////
function js_userAlert(type,text) {

	i = document.getElementById("user_alert");
	x = document.getElementById("user_alert_ok");
	y = document.getElementById("user_alert_error");
	z = document.getElementById("user_alert_none");

	if (x) i.removeChild(x);
	if (y) i.removeChild(y);
	if (z) i.removeChild(z);

	var alert_div = document.createElement("DIV");
	alert_div.id = type;
	var alert_text = document.createTextNode(text);
	alert_div.appendChild(alert_text);
	i.appendChild(alert_div);

}
//###################################################################
//HOME PAGE SCROLLER
//###################################################################
function js_Scroller() {

	marqueeInit({
		uniqueid: 'home_scroller',
		style: {
			'padding': '2px',
			'width': '580px',
			'height': '120px'
		},
		inc: 1, //speed - pixel increment for each iteration of this marquee's movement
		mouse: 'pause', //mouseover behavior ('pause' 'cursor driven' or false)
		moveatleast: 2,
		neutral: 150,
		savedirection: true,
		random: false
	});
}



