var d=new Date();
var message="(c) 2003-" + d.getFullYear() + " by PSC-Team Berlin GmbH";
var cAT="@";
var cRF="ibox";
var cDE=".de";
function click(e) {
	if (document.all) {
		if (event.button==2||event.button==3) {
			alert(message);
			return false;
		};
	};
	if (document.layers) {
		if (e.which == 3) {
			alert(message);
			return false;
		};
	};
};

function getAdd(AdNum,Text,Hinweis) {
	var a="";
	var h="";
	var pf="";
	cRF="ratiofill";
	if (Hinweis.length>0) {
		h=" onmouseover=" + String.fromCharCode(34) + "self.status='" + Hinweis + "'; return true;" + String.fromCharCode(34) ;
	}

	if (AdNum=="s")	pf="support";
	if (AdNum=="i") pf="info";
	if (AdNum=="m") pf="info";
	if (AdNum=="w") pf="webmaster";
	if (AdNum=="p") {
		pf="info";
		cRF="psc-team-berlin";
		}
	if (pf.length>0) {
		var b = pf + cAT + cRF + cDE;
		var c = b;
		if (Text.length>0) 
			c=Text;
		a="<a href=" + "'mailto:" + b +"'" + h + ">" + c +"</a>" ;
	};
	return a;
};

if (document.layers) {
	document.captureEvents(Event.MOUSEDOWN);
	};

document.onmousedown=click;


