function webmail_login() { webmail_roundcube_login(); return false; } function webmail_roundcube_login() { window.open('/webmail_form.unet','',''); } function webmail_horde_login() { var w = window.open('','',''); w.document.writeln(''); w.document.writeln(''); w.document.writeln('Webmail Login'); w.document.writeln(''); w.document.writeln(''); w.document.writeln('
'); w.document.writeln(''); w.document.writeln(''); w.document.writeln(''); w.document.writeln(''); w.document.writeln(''); w.document.writeln(''); w.document.writeln(''); w.document.writeln(''); w.document.writeln(''); w.document.writeln(''); w.document.writeln(''); w.document.writeln(''); w.document.writeln(''); w.document.writeln(''); w.document.writeln(''); w.document.writeln(''); w.document.writeln(''); w.document.writeln('
'); w.document.writeln(''); w.document.writeln(''); w.document.imp_login.imapuser.value = document.webmail_login_form.login_username.value; w.document.imp_login.pass.value = document.webmail_login_form.login_pass.value; document.webmail_login_form.login_username.value = ''; document.webmail_login_form.login_pass.value = ''; w.document.imp_login.submit(); }