function fn_mail(to,cc,bcc,subject,body) {
	while (to.match('!at!')) {
		to = to.replace('!at!','@');
	}
	string = 'mailto:'+to
	fragezeichen = false;
	if (cc !='') {
		while(cc.match('!at!')) {
			cc = cc.replace('!at!','@');
		}
		if (! fragezeichen) {string = string + '?';}
		else {string = string + '&';}
		string = string + 'cc=' + cc;
		fragezeichen = true;
	}
	if (bcc !='') {
		while(bcc.match('!at!')) {
			bcc = bcc.replace('!at!','@');
		}
		if (! fragezeichen) {string = string + '?';}
		else {string = string + '&';}
		string = string + 'bcc=' + bcc;
		fragezeichen = true;
	}
	if (subject !='') {
		if (! fragezeichen) {string = string + '?';}
		else {string = string + '&';}
		string = string + 'subject=' + subject;
		fragezeichen = true;
	}
	if (body !='') {
		if (! fragezeichen) {string = string + '?';}
		else {string = string + '&';}
		string = string + 'body=' + body;
		fragezeichen = true;
	}

	schliessen = open(string,'schliessen');
	if (window.schliessen)
		window.schliessen.close();
}

function popUp(url,windowname,style){
	var standard = "top=40,left=200,resizable=no,status=no,toolbar=no,menubar=no,location=no";
	if (style=="pro" || style=="int" || style=="sef") var size = ",scrollbars=yes,width=600,height=500";
	else if (style=="poi") var size = ",scrollbars=yes,width=500,height=480";
	else if (style=="pri") var size = ",scrollbars=yes,width=685,height=600";
	else if (style=="cms") var size = ",scrollbars=yes,width=500,height=400";
	else if (style=="loc") var size = ",scrollbars=no,width=305,height=355";
	else if (style== "profile"){
		var size = ",scrollbars=no,width=200,height=60";
	}
	newwin = window.open(url,windowname,standard+""+size);
	newwin.focus(self);
}
