/* // File written by Jochen "Khuri" Höhmann // Copyright 2009 // // File : main.js // Begin : 2008.07.07 13:27:13 // Last Update : 2009.04.28 08:32:48 */ var clientbrowser = navigator.userAgent.toLowerCase(); var is_ie = ((clientbrowser.indexOf("msie") != -1) && (clientbrowser.indexOf("opera") == -1)); var is_nav = ((clientbrowser.indexOf('mozilla')!=-1) && (clientbrowser.indexOf('compatible') == -1)); function convert_mail(mail) { window.location.href="mailto:"+decodeURIComponent(mail); } function whereto(where,how) { if(how == 1) { window.open(where); } else { window.location.href=where; } } // Statusbox function statusbox_close() { document.getElementById('statusbox').style.visibility='hidden'; document.getElementById('statusbox').style.display='none'; } function clearsearch(who) { if(searchclear != 1) { who.className = 'textbox'; who.value = ''; } var searchclear=1; }