function mnoGoSearch(query) {
	var url = "/functions/search/index.php?query="+query;
	var width = 610;
	var height = 480;
	var windowname = "mnoGoSearch";
	var RandLinks = (window.screen.availWidth - width)/2;
	var RandOben = (window.screen.availHeight - height)/2;
	OpenWin = this.open(url, windowname, "left="+RandLinks+",top="+RandOben+",toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no,height="+height+",width="+width);
	OpenWin.focus();		
}