/*
Script by Wanderverein Steinabrückl Pepi's Hütt'n
http://www.wrv-steinabrueckl.at
Released for free under a Creative Commons Attribution 2.5 License
*/



function OpenPdf(pdfurl, b,h) {

var eigenschaften,sbreite,shoehe,fenster;

	// stellt die Bildschirmabmessungen fest
	sbreite = screen.availWidth;
	shoehe = screen.availHeight;

	x = (sbreite-b)/2;
	y = (shoehe-h)/2;

	eigenschaften="left="+x+",top="+y+",screenX="+x+",screenY="+y+",width="+b+",height="+h+",menubar=no,toolbar=no,statusbar=0,scroll=1";

	fenster= window.open("","popup",eigenschaften);
	fenster.location.href=pdfurl;
	fenster.focus();
	

}

function decode(text1, text2, text3) {
      document.write('<a href="' + 'mailto:' + text1 + '@' + text2 + '.' + text3 + '">' + text1 + '@' + text2 + '.' + text3 + '</a>');
}
