// JavaScript Document

function onFocusRemoveSearchText() {
	if ( !document.getElementById ) return false;
	if ( !document.getElementById('search') ) return false;
	
	s = document.getElementById('search');

	s.onfocus = function () {
		s.value = "";	
	}
}


// NEC stuff not from Studio24
function openWin(URL,name) {
	aWindow=window.open(URL,name,"toolbar=no,width=350,height=400,status=yes,scrollbars=yes,resize=no,menubar=no");
}
	

// add the function on the load
window.onload = function() {
	onFocusRemoveSearchText();
}

