/* open little browser window */ function openWindow(url, name, width, height){ ventana = window.open(url, name, "width= " + width + ", height= " + height + ", resizable=yes, menubar=no, scrollbars=yes, alwaysRaised=yes, toolbar=no, dependent=yes"); ventana.focus(); } /* close little browser window */ function closeWindow(){ window.close(); } /* redirect to other page */ function redirect(url) { window.open(url) } /* variables to set language cookie */ var today = new Date(); var expiry = new Date(today.getTime() + 30 * 24 * 60 * 60 * 1000); /* special functions for Virus & Spam filter, to be transferred somewhere else later */ function setStyle() { button = document.getElementById("dynLink"); if (document.main.confirm.checked) { /* set hover effect on link (style sheet) */ button.className = "buttonLink"; } else { /* take away hover effect on link */ button.className = "buttonLinkInactive"; } } function checkConfirmation(){ if (document.main.confirm.checked == false){ alert ("[EN:Please show that you agree by selecting the checkbox.:][DE:Bitte zeigen Sie Ihr Einverstaendnis dadurch, dass Sie die Checkbox selektieren.:][FR:Please show that you agree by selecting the checkbox.:][IT:Please show that you agree by selecting the checkbox.:]"); return false; } else { return true; } } function checkChoice(){ if (document.main.selected_domain.value == "") { alert ("[EN:Please select a domain.:][DE:Bitte Domain auswählen.:][FR:Veuillez choisir un domain.:][IT:Prego selezionare un domain.:]"); return false; } else { return true; } } function checkFax(){ if (document.main.customer_fax.value == "") { alert ("[EN:Please enter a valid fax number.:][DE:Bitte gueltige Faxnummer eingeben.:][FR:Veuillez écrire un numéro de fax valide.:][IT:Indicare prego un numero di fax valido.:]"); document.main.customer_fax.focus(); return false; } else { return true; } }