function searchIframe(){
	tmpList = "0";
	if(tmpform != "amenity"){
		for(i=0; i < document.property.type.length; i++){
			if(document.property.type[i].checked == true)
			tmpList = tmpList + "," + document.property.type[i].value
		}
		if(tmpList != 0){
			showIframe('property','accommodationIframe');
			document.getElementById("accommodationsData").src = "http://qa.cf7.zimmerman.com/DestinOkaloosa/Websites/Destin-FWBdotCom/2007Website/Resources/Tags/Data/accommodationsResults.cfm?a=Property&type=" + tmpList;
		}
	}else{
		for(i=0; i < document.amenity.options.length; i++){
			if(document.amenity.options[i].checked == true)
			tmpList = tmpList + "," + document.amenity.options[i].value
		}
		if(tmpList != 0){
			showIframe('Amentiy','accommodationIframe');
			document.getElementById("accommodationsData").src = "http://qa.cf7.zimmerman.com/DestinOkaloosa/Websites/Destin-FWBdotCom/2007Website/Resources/Tags/Data/accommodationsResults.cfm?a=Amenity&options=" + tmpList;
		}
	
	}
}
