function PopupWindow(theURL, fensterBreite, fensterHoehe, scrollbars)
{
window.open(theURL,"cp","toolbar=no,width="+ fensterBreite +",height="+ fensterHoehe +",directories=no,status=yes,scrollbars="+ scrollbars +",menubar=no")
}

function buildemail(prefix, domain)
{
document.write('<a href=\'mailto:' + prefix + '@' + domain + '\'>' + prefix + '@' + domain + '</a>')
}

var regexie  = new RegExp(/MSIE/i);
var regexfox = new RegExp(/Firefox/i);
if ((navigator.userAgent.match(regexie)) || (navigator.userAgent.match(regexfox)))  {   
   
}
else {
   document.write('<style>.radiobox {background-color: #7F7F7F; border-width: 1px; border-color: #C3C3C3;} <\/style>');
} 