function openPopup(URL,WIDTH,HEIGHT){
	if(!WIDTH) WIDTH=600;
	if(!HEIGHT) HEIGHT=600;
	popup = window.open(URL,"popup","width="+WIDTH+", height="+HEIGHT+", scrollbars=yes");
}

//Image Popup mit Bildangabe zum einladen
function showImage(img,WIDTH,HEIGHT) {
 imagepopup=window.open ('','Popup','height='+HEIGHT+',width='+WIDTH)
 content =   '<body topmargin="0" leftmargin="0" marginwidth="0" marginheight="0" bgcolor="#FFFFFF">'
 			+'<table cellpadding="0" cellspacing="0" border="0" width="100%" height="100%"><tr><td>'
 			+'<a href="javascript:window.close()"><img name="myImage" src="'+img+'" border="0" alt="Auf das Bild klicken um es zu schliessen"></a>'
 			+'</td></tr></table></body>';
 imagepopup.document.write(content);
imagepopup.document.close();
}