Event.observe(window, "load", function(){
    window.name = 'bwfps';
});

function searchreset(INPUT) {
	if ( INPUT.value == "SUCHE" || INPUT.value == "Search" ) {
		INPUT.value = "";	
	}
}

function searchresetplz(INPUT) {
	if ( INPUT.value == "PLZ" || INPUT.value == "zip code") {
		INPUT.value = "";	
	}
}

function openwindow(url,boxname,w,h,scroll) {
    var box = null;
    
    LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
    TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
    
    settings ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
    box = window.open(url,boxname,settings)
}
