/*
Copyright by Daniel Schwarz, (www.schwarzmedia.ch)
*/
function dropdownOnChange(x) { 
	if(x.length>1){
		 window.location.href = "/de/onlineshop.html?L=0&shop[cat]="+x;
		 document.forms[0].reset();
		 document.forms[0].elements[0].blur();
	}
}
// Window for Form
function windowOffertanfrage(url) {
	var breite = 800;
	var hoehe = 600;
	var seite = (screen.availWidth - breite) / 2;
	var oben = (screen.availHeight - hoehe) / 2;
	params = ('width='+ breite +',height='+ hoehe +',left='+ seite +',top='+ oben+',scrollbars=yes,resizable=no');
	window.open(url,'offertanfrage',params);
}
// Window for Impressum
function windowImpressum() {
	var breite = 280;
	var hoehe = 414;
	var seite = (screen.availWidth - breite) / 2;
	var oben = (screen.availHeight - hoehe) / 2;
	params = ('width='+ breite +',height='+ hoehe +',left='+ seite +',top='+ oben+',scrollbars=no,resizable=no');
	window.open('/impressum.php','impressum',params);
}