function PopUpPic(Image,W,H) {
                var Width, Height
                Width=W;
                Height=H;

if (document.all) {

                maxpic = window.open("", "maxpic","scrollbars=no,resizeable=no,width="+Width+",height="+Height+"");
                maxpic.document.write("<html><head><title> Kreative Heilhypnose - Bild</title></head><body bgcolor='#FFFFFF' marginwidth='0' marginheight='0' topmargin='0' leftmargin='0'><table align='center' valign='middle' "+"cellpadding='0' cellspacing='0' width='100%' height='100%'><tr><td align='center'><a href='javascript:window.close();'><img src='"+Image+"' border='0'></a></td></tr></table></body></html>");
                }
else {
                maxpic = window.open(Image, "maxpic", "scrollbars='no',resizeable='no',width="+Width+",height="+Height+""); window.close();
                }
}