// Copyright Marcus Haas
function check(){
	if (document.getElementsByTagName("img")[0]) {
		var images = document.getElementsByTagName("img");
		for ( var i=0; i<images.length; i++ ) {
			images[i].onclick = function () {showimg(this.src,this.alt)};
			images[i].style.cursor="pointer";
		}
	}
}
function showimg(src,alt) {
	var bild_window = window.open("http://"+window.location.hostname+"/bild.php?src="+src.replace(/-LQ.jpg/,".jpg")+"&alt="+alt,"Bild","toolbar=no,width=600,height=600,directories=no,scrollbars,status=no,menubar=no,resizable=yes");
	bild_window.document.close();
	bild_window.focus();
}