//Popup-Fenster____http://www.webmasterbiz.de/archive/index.php/t-742.html_____________
var bild_objekt = new Image();

function bild_objekt_anzeigen(bild){
	var output_fenster_width=bild_objekt.width+20;
	var output_fenster_height=bild_objekt.height+24;
	try {
		if (output_fenster.closed === false) {
			throw "offen";
		}
	}
	catch (e) {
		if (e==="offen") {
			output_fenster.close();
		}
	}
	output_fenster=window.open("", "Photo", "left=40,top=40,width=" + output_fenster_width + ",height=" + output_fenster_height + ",location=no,toolbar=no,menubar=no,status=no,scrol lbars=no,resizable=no");
	output_fenster.document.writeln("<html><head><title>....:: Photo ::....<\/title><\/head>");
	output_fenster.document.writeln("<body bgcolor=\"white\" text=\"white\" link=\"white\" vlink=\"white\" alink=\"white\" leftmargin=\"0\" marginwidth=\"0\" topmargin=\"0\" marginheight=\"0\">");
	output_fenster.document.writeln("<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" height=\"100%\">");
	output_fenster.document.writeln("<tr><td width=\"100%\" height=\"100%\" align=\"left\" valign=\"top\"><p><a href=\"javascript:self.close()\"><img src=\"" + bild + "\" width=\"" + bild_objekt.width + "\" height=\"" + bild_objekt.height + "\" border=\"10\" alt=\"click here to close the window\"></a><\/p><\/td><\/tr>");
	output_fenster.document.writeln("<\/table><\/body><\/html>");
	output_fenster.focus();
}



function popup(bild) {
	bild_objekt.src = bild;
	bild_objekt_kontrollieren(bild);
}

function bild_objekt_kontrollieren(bild) {
	if( (bild_objekt.width !== 0) && (bild_objekt.height !==0 ) ) {
		bild_objekt_anzeigen(bild);
	}
	else {
		var interval_a="popup("+bild+")";
		var interval_b=setTimeout(interval_a, 200);
	}
}
