/**********************************************************************************
* AZ: 03/03/2006
*	  The following functions are misc tools for the Real Estate product (Daily Pilot)
/**********************************************************************************/			    

/* Only only decimal digits. Useful for the price field under the Property User Control. */
function decOnly(i) 
{
	var t = i.value;
	if(t.length>0) {
		t = t.replace(/[^\d\.]+/g, ''); 
	}
	var s = t.split('.');
	if(s.length>1) {
		s[1] = s[0] + '.' + s[1];	
		s.shift(s);
	}
	i.value = s.join('');
}

/* Reset the values in all the controls under the Search Control User Control */
function resetSearchValues(txtDefaultText)
{
	var frm = document.forms["frmDailyPilot"];
		
	for(i=0; i< frm.length; i++) {
		e = frm.elements[i];
				
	    // Only get controls that are under the Search Control User Control.
		if (e.name.substring(0, 16)  == 'RE_SearchControl')
		{
			// If it is a textbox, assign it to the default text
			if (e.type == 'text')
			{
				e.value = txtDefaultText;
			}
			// If it is a dropdown, select the first item
			else if (e.type == 'select-one')
			{
				e.value = '-1';
			}
		}
	}
}

/**********************************************************************************
* END
/**********************************************************************************/