function popup(imageSource,text,id) {

	            var image ="";

				var site ="\n<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>\n<!DOCTYPE html PUBLIC \"-\/\/W3C\/\/DTD XHTML 1.0 Transitional\/\/EN\" \"http:\/\/www.w3.org\/TR\/xhtml1\/DTD\/xhtml1-transitional.dtd\">\n<html xmlns=\"http:\/\/www.w3.org\/1999\/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text\/html; charset=iso-8859-1\" \/>\n<title>devils Kitchen<\/title>\n\n<style type=\"text\/css\" media=\"screen,print\"> @import 'fileadmin\/layout\/styles\/styles_web.css'; <\/style>\n\n<\/head>\n<body>\n\n<div class=\"inner\" style=\"padding:20px 20px 10px 20px; margin:30px 30px 20px 30px; background-color:#fff; background-image:none;\">\n\n<img src=\""+imageSource+"\"\/>\n\n<p style=\"padding-top:5px;margin:5px 0px 0px 0px;font-size:0.6875em \">"+text+"<\/p>\n\n<div style=\"text-align:right;\"><a style=\"font-size:0.6875em; font-weight:bold; padding:0px 0px 0px 20px; \" href=\"javascript:window.close()\">Fenster schließen<\/a><\/div>\n\n<\/div>\n\n<\/body>\n\n<\/html> \n";

				popupWindow = window.open("","id","width=700,height=570,directories=no,toolbar=no,location=no,menubar=no,scrollbars=no,status=no,resizable=no,dependent=yes");

			

				popupWindow.document.open("text/html");

                popupWindow.document.write(site);

				popupWindow.focus();

				popupWindow.document.close();

                }
