//(c)Roger Simms
function f(){
	var x = document.getElementById('search');
	if(x.value == 'type here...') {
        x.value = '';
		x.style.backgroundColor="#ffffaa";
		x.style.color="#222222";
    }
}
function b(){
	var x = document.getElementById('search');
    if(x.value == '') {
        x.value = 'type here...';
		x.style.backgroundColor="#ffffff";
		x.style.color="#aaaaaa";
    }
}
