function go2Url(url)
{
	window.location.href=url;
}

function PopUpFenster(src,breite,hoehe) 
{
	var l = (screen.availWidth - breite) / 2;
	var t = (screen.availHeight - hoehe) / 2;
	open(src,"","width="+breite+",height=" +hoehe+",status=no,toolbar=no"+",left="+l+",top="+t+";");
}

