function clearSearch(){		
	var searchText;
	searchText = document.simplesearch.attr_keywords.value;
	
	if(searchText == "Search"){
		document.simplesearch.attr_keywords.value = "";
	}else if(searchText == ""){
		document.simplesearch.attr_keywords.value = "Search";
	}
}

function clearPostcode(){		

//	var inputText;
//	inputText = document.branchsearch.POST_CODE.value;
	
	document.branchsearch.POST_CODE.value = "";
}

function quickHelp(){	


	if (form.quickHelpSelect.selectedIndex != 0)
      location = form.quickHelpSelect.options[form.quickHelpSelect.selectedIndex].value;


//	var getUrl;
//	getUrl = document.quickHelp.url.value;
	
//	alert(getUrl);

//	if(getUrl != "0"){
//		location = getUrl;

//		alert("here");

//		alert(location);
//	}
}

function quickLook(){	
	var getUrl;
	getUrl = document.quickLook.url.value;
	
	if(getUrl != "0"){
		location = getUrl;
	}
}


function preloadImages(){
		
	 // create object
	 imageObj = new Image();

	 // set image list
	 images = new Array();
	 images[0]=includes_path + "/images/branches/Head_Office_small.jpg";
	 images[1]=includes_path + "/images/branches/Bridge_Street_small.jpg";
	 images[2]=includes_path + "/images/branches/Cherry_Hinton_Road_small.jpg";
	 images[3]=includes_path + "/images/branches/Chesterton_Road_small.jpg";
	 images[4]=includes_path + "/images/branches/Grafton_Centre_small.jpg";
	 images[5]=includes_path + "/images/branches/Mill_Road_small.jpg";
	 images[6]=includes_path + "/images/branches/St_Andrews_Street_small.jpg";
	 images[7]=includes_path + "/images/branches/Ely_small.jpg";
	 images[8]=includes_path + "/images/branches/Huntingdon_small.jpg";
	 images[9]=includes_path + "/images/branches/Newmarket_small.jpg";
	 images[10]=includes_path + "/images/branches/Soham_small.jpg";
	 images[11]=includes_path + "/images/branches/St_Ives_small.jpg";
	 images[12]=includes_path + "/images/branches/St_Neots_small.jpg";
	 images[13]=includes_path + "/images/branches/Bar_Hill_small.jpg";
	 images[14]=includes_path + "/images/branches/Burwell_small.jpg";
	 images[15]=includes_path + "/images/branches/Cambourne_small.jpg";
	 images[16]=includes_path + "/images/branches/Cherry_Hinton_small.jpg";
	 images[17]=includes_path + "/images/branches/Comberton_small.jpg";
	 images[18]=includes_path + "/images/branches/Cottenham_small.jpg";
	 images[19]=includes_path + "/images/branches/Great_Shelford_small.jpg";
	 images[20]=includes_path + "/images/branches/Histon_small.jpg";
	 images[21]=includes_path + "/images/branches/Melbourn_small.jpg";
	 images[22]=includes_path + "/images/branches/Milton_small.jpg";
	 images[23]=includes_path + "/images/branches/Sawston_small.jpg";


	 // start preloading
	 for( var i=0; i<=images.length; i++ ) 
	 {
				imageObj.src=images[i];
	 }

}

//Change Branch Photos
function changePhoto(branch){

//	var branch = branch;

	if ( document.getElementById("branchPhoto") )
	{
		if ( branch )
		{	
			var mybranch = branch.replace(/_/g, " ");
			
			document.getElementById("branchPhoto").src = includes_path + "/images/branches/" + branch + "_small.jpg";

			document.getElementById("branchName").lastChild.nodeValue = mybranch;
		}
		else
		{
//			setTimeout('revertPhoto()',3*1000);

			document.getElementById("branchPhoto").src = includes_path + "/images/branches/blank_small.jpg";

			document.getElementById("branchName").lastChild.nodeValue = "";
		}
	}
}

//function revertPhoto(){
	
//	document.getElementById("branchPhoto").src = "../images/blank_small.jpg";

//	document.getElementById("branchName").lastChild.nodeValue = "Head Office";
//}
