function catalogvalues(zip,beds,term){
var zip = zip;
var beds = beds;
var term = term;
if ( zip != "")
{
	document.catalog.zip.value =zip
	document.catalog.term.value = term
	if (beds != ""){
		document.catalog.beds.value = beds
	}
}
}