function onfocusText(id,text) {
//var m = document.getElementById(ddmenu);
	if(id.value == text) {
		id.value = '';
	}
	return false;
}
function onblurText(id,text) {
//var m = document.getElementById(ddmenu);
	if(id.value == '') {
		id.value = text;
	}
	return false;
}
