<!--
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function rs_submit_de() {
	
		errorMSG = 'Pflichtfelder:   \n\n';
		startLength = errorMSG.length;
		if (document.request.name.value == '') errorMSG += '- Vorname\n';
		if (document.request.surname.value == '') errorMSG += '- Nachname\n';
		if (document.request.street.value == '') errorMSG += '- Strasse\n';
		if (document.request.zip.value == '') errorMSG += '- PLZ\n';
		if (document.request.city.value == '') errorMSG += '- Ort\n';
		if (document.request.country.value == '') errorMSG += '- Land\n';
		if (document.request.email.value.indexOf('@') < 1 || document.request.email.value.indexOf('.') < 1) errorMSG += '- E-mail\n';
        //if (document.request.privacy.checked == false) errorMSG += '- Privacy\n';

		if (errorMSG.length != startLength) {
			alert(errorMSG);
			
		}
		else {
			document.request.submit();
		}
	 
	}
	
function rs_submit_it() {

		errorMSG = 'Campi obbligatori:   \n\n';
		startLength = errorMSG.length;
		if (document.request.name.value == '') errorMSG += '- Nome\n';
		if (document.request.surname.value == '') errorMSG += '- Cognome\n';
		if (document.request.street.value == '') errorMSG += '- Indirizzo\n';
		if (document.request.zip.value == '') errorMSG += '- CAP\n';
		if (document.request.city.value == '') errorMSG += '- Citta\n';
		if (document.request.country.value == '') errorMSG += '- Paese\n';
		if (document.request.email.value.indexOf('@') < 1 || document.request.email.value.indexOf('.') < 1) errorMSG += '- E-mail\n';
        //if (document.request.privacy.checked == false) errorMSG += '- Privacy\n';
		if (errorMSG.length != startLength) {
			alert(errorMSG);
			
		}
		else {
			document.request.submit();
		}
	}
function popup(url) {
    var url;
    var sW = screen.width;
    var sH = screen.height;
    var wH = 610;
    var wW = 617;
    var hW = (sW / 2) - (wW / 2);
    var hH = (sH / 2) - (wH / 2);
    win = window.open(url,'_blank','height=' + wH + ',width=' + wW + ',left=' + hW + ',top=' + hH + ',scrollbars=yes,resizable=no');
}
//-->