function submitSearch(){
	var top, left, width = 800, height = 600;
	
	top = Math.round((screen.height - height) / 2);
	left = Math.round((screen.width - width) / 2);
	
	fenster = window.open('about:blank', 'resultwindow', 'width=' + width + ',height=' + height + ',left=' + left + ',top=' + top + ',scrollbars=yes,status=yes,resizable=yes');
	fenster.focus();
	
	return false;
}

