	function MovePos() {
		if(document.all) {
			var sw=screen.availWidth;
			var sh=screen.availHeight;
			var sx=parseInt((sw-document.body.offsetWidth)/2);
			var sy=parseInt((sh-document.body.offsetHeight)/2);
			self.moveTo(sx,sy);
		}
	}
	function WindowClose() {
		self.close();
	}

function OpenWindow(strUrl,w,h,top,men,stat,loc,scrollb) {
	var sw=screen.availWidth;
	var sh=screen.availHeight;
	//var sx=parseInt((sw-w)/2);
	var sx=sw-w;
	var sy=parseInt((sh-h)/2);
	sx=(sx<0)?0:sx;
	sy=(sy<0)?0:sy;
	var strFormat="width=" + w + ",height=" + h + ",left=" + sx + ",top=" + top + ",menubar=" + men +",toolbar=no,resizable=yes,status=" + stat+",location="+loc+",scrollbars="+scrollb;
	var F=window.open(strUrl,"info",strFormat);
}

function DoSearch(){
	var strSearchvalue=document.getElementById('inpsearch').value+'*';
	//var strSearch="searchpro/index.php?q=" + document.getElementById('inpsearch').value+"&search=Suchen";
	var strSearch="searchpro/index.php?q=" + strSearchvalue +"&search=Suchen";
	location.href=strSearch;
}
