// FORM FUNCTIONS 

	function focusText(obj,strCheck){
		if(obj.value==strCheck){
			obj.value='';
			obj.style.backgroundColor = "#FFFAE4";
		}		
	}
	function blurText(obj,strCheck){
		if(obj.value=='' || obj.value.indexOf(" ")==0){
			obj.value=strCheck;
			obj.style.backgroundColor = "";
		}else{
		};
	}
	
	/* activate button - see page contact us */
	function activateButton(objA){
		var objParent = (objA.parentNode)?objA.parentNode:objA.parentElement;
		var objButton = objParent.getElementsByTagName("input")[0];
		objButton.click();
	}		