// JavaScript Document
/***********************************************************************************
*	(c) Firecast Web Solutions 2003 version 1.01 28 February 2003	          *
*	For info write to info@firecast.co.uk		          *
*	You may remove all comments for faster loading	          *		
***********************************************************************************/
function srch_fields(field,type) {
	if(document.getElementById){
	var fieldtoget = document.getElementById(field);
		if(type == 'in'){
			//when clicking in field identify field and blank value
			if(fieldtoget.value == 'enter search text'){
				fieldtoget.value = '';
			}
		}else{
			//when clicking out identify field and add default value
			if(fieldtoget.value.length == 0 && field == 'p_site_searchkeyword'){
				fieldtoget.value = 'enter search text';
			}
		}
	}
}