var RecaptchaOptions = {
    theme : 'custom'
 };

function showMessage(msg){
	alert(msg);
}
function handleError(msg,id){
	showMessage(msg);
	document.getElementById(id).focus();
}
function clearForm(){
	var arr = document.getElementsByTagName('*');	
	for(var i=0;i<arr.length;i++){
		if(arr[i].type=='text' || arr[i].type=='textarea'){
			arr[i].value=(arr[i].id=='contact_country') ? 'USA' : '';
		}
	}
}
function setFocusBGColor(obj){
	document.forms[obj.form.id].elements[obj.id].style.background = '#fff200';
}

function setBlurBGColor(obj){
	document.forms[obj.form.id].elements[obj.id].style.background = '#ffffff';
}
