﻿// Dropdown JS
function formHandler_1(form){
var URL = document.form.url_1.options[document.form.url_1.selectedIndex].value;
window.location.href = URL + "&lang=de";
}
function formHandler_2(form){
var URL = document.form.url_2.options[document.form.url_2.selectedIndex].value;
window.location.href = URL + "&lang=de";
}
function formHandler_3(form){
var URL = document.form.url_3.options[document.form.url_3.selectedIndex].value;
window.location.href = URL + "&lang=de";
}
function formHandler_4(form){
var URL = document.form.url_4.options[document.form.url_4.selectedIndex].value;
window.location.href = URL + "&lang=de";
}

function formHandler_5(form){
var URL = document.form.url_5.options[document.form.url_5.selectedIndex].value;
//alert(URL + "&lang=en");
window.location.href = URL + "&lang=en";
}
function formHandler_demo(form){
var URL = document.form.url_demo.options[document.form.url_demo.selectedIndex].value;
window.open(URL);
}
function formHandler_light(form){
var URL = document.form.url_light.options[document.form.url_light.selectedIndex].value;
window.location.href = URL;
}
function formHandler_standard(form){
var URL = document.form.url_standard.options[document.form.url_standard.selectedIndex].value;
window.open(URL);
}
function formHandler_pro(form){
var URL = document.form.url_pro.options[document.form.url_pro.selectedIndex].value;
window.open(URL);
}
