// JavaScript Document
function mailme(adresse, domain) {
    document.write('E-mail: ')
	document.write('<a href=\"mailto:'+adresse+'&#64;'+domain+'\">'+adresse+'&#64;'+domain+'<\/a>');
}

function phoneme(vorwahl, durchwahl) {
    document.write('Tel.: ')
	document.write(vorwahl+'/'+durchwahl+'<br>');
}

function faxme(vorwahl, durchwahl) {
    document.write('Fax: ')
	document.write(vorwahl+'/'+durchwahl+'<br>');
}

function openWindow(url) {
	popupWin = window.open(url,'remote','alwaysRaised,scrollbars,dependent,width=300,height=300,left=50,top=20')
	popupWin.focus()
}
