function showDropDown(x) {
	var o = document.getElementById("DropMenu"+x);
	if(o) { o.setAttribute("style","display:block;z-index:6000;");}
} 
function hideDropDown(x) {
	var o = document.getElementById("DropMenu"+x);
	if(o) { o.setAttribute("style","display:none"); }
}
function image_pop(url,caption,width,height) {
	var left = Math.ceil((screen.width-width)/2);
	var top =  Math.ceil((screen.height-height)/2); 
	var attr = "left="+left+",top="+top+",height="+height+",width="+width+",scrollbars=yes";
	var newwindow = window.open(url,escape(caption),attr);
	if (window.focus) {newwindow.focus()}
}
function suggest(x) {
	$.get(baseURL+"suggest",{key:x},function(data){document.getElementById("SearchPrompt").innerHTML=data;});
}
function select_suggest(x) {
	document.getElementById("SearchPrompt").innerHTML="";
	document.getElementById("SearchInput").onclick = function(){};
	document.getElementById("SearchInput").value = x;
	document.getElementById("SearchInput").focus();
}
