// JavaScript Document
function imgPopUp(b, h, url, title, alt, text) 
{
	var tpop_bildschirmx = screen.availWidth;
	var tpop_bildschirmy = screen.availHeight;

	var tpop_breite = b;
	var tpop_hoehe = h;

	var tpop_startx = Math.round(tpop_bildschirmx / 2) - (tpop_breite / 2);
	var tpop_starty = Math.round(tpop_bildschirmy / 2) - (tpop_hoehe / 2);
	
	if(text != ""){
		tpop_hoehe += 33;}

	pic_popup = window.open("", "", "width="+ tpop_breite + ", height=" + tpop_hoehe + ", status=no, toolbar=no, menubar=no, resizable=no, scrollbars=no, screenX=" + tpop_startx + ", left=" + tpop_startx + ", screenY=" + tpop_starty + ", top=" + tpop_starty + " ");
	pic_popup.focus();
	pic_popup.document.open();
	pic_popup.document.writeln('<html>');
	pic_popup.document.writeln('<head>');
	pic_popup.document.writeln('<title>'+title+'</title>');
	pic_popup.document.writeln('</head>');
	pic_popup.document.writeln('<body bgcolor="#FFFFFF" marginwidth="0" marginheight="0" topmargin="0" leftmargin="0">');
	pic_popup.document.writeln('<table vspace="0" hspace="0" cellspacing="0" cellpadding="0" height="'+tpop_hoehe+'" width="'+tpop_breite+'" align="center" border="0">');
	pic_popup.document.writeln('<tr>');
	pic_popup.document.writeln('<td>');
	pic_popup.document.writeln('<a href="#" onclick="self.close()" alt="'+ alt +'"><img src="'+ url +'" width="'+ b +'" height="'+ h +'" border="0" style="margin:0px;" alt="'+ alt +'" title="'+ alt +'"></a>');
	pic_popup.document.writeln('</td>');
	pic_popup.document.writeln('</tr>');
	
	if(text != ""){
		pic_popup.document.writeln('<tr>');
		pic_popup.document.writeln('<td align="center" style="font:italic .8em verdana,helvetica,arial,sans-serif;line-height:2em;">');
		pic_popup.document.write(text);
		pic_popup.document.write('</td>');
		pic_popup.document.writeln('</tr>');
	}
	
	pic_popup.document.writeln('</table>');
	pic_popup.document.writeln('</body>');
	pic_popup.document.writeln('</head>');
	pic_popup.document.close();
	
	if(!pic_popup)
		alert("Kein PopUp in Ihrem Browser möglich!\n\nUm die gewünschte Seite sehen zu können müssen Sie für unsere Domain (www.walzenirle.com) den PopUp-Blocker ausschalten.\nWie das für Ihren Browser funktioniert, entnehmen Sie bitte der Hilfe Ihres Browsers.");
}