// PopUps aufrufen
function PopUp(src,w,h)
{
	var breite = (screen.width - w) / 2;
	var hoehe = (screen.height - h) / 2;
	window.open(src,"Fenster","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width="+w+",height="+h+",top="+hoehe+",left="+breite);
}

function ImageViewer(imgURL,imgWIDTH,imgHEIGHT,imgTITLE)
{
	newWindow=window.open(imgURL,"newWin",'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=auto,resizable=no,width='+imgWIDTH+', height='+imgHEIGHT)
	newWindow.document.write('<html>\n<head>\n<title>'+imgTITLE+'<\/title>\n<\/head>\n<body style="margin:0; padding:0;" background="'+imgURL+'" >\n&nbsp;<\/body>\n<\/html>')
	newWindow.resizeBy(imgWIDTH-newWindow.document.body.clientWidth, imgHEIGHT-newWindow.document.body.clientHeight)
	newWindow.focus()
}

