// JavaScript Document
function searchmenu(id){
	document.getElementById(id).focus();
    document.getElementById(id).select();
}

