<!--
var imagepopup = null;
function specialpop(theURL,winName,altName,features,myWidth,myHeight,isCenter) {
var add = 50;
myHeight = parseInt(myHeight);
  myHeight+=add;
  if(window.screen)if(isCenter)if(isCenter == 'true') {
    var myLeft = (screen.width-myWidth)/2;
    var myTop = (screen.height-myHeight)/2;
    features+=(features!='')?',':'';
    features+=',left='+myLeft+',top='+myTop;
  }
          if (imagepopup != null && !imagepopup.closed)
                imagepopup.close();
  imagepopup = window.open('','',features+((features!='')?',':'')+'width='+myWidth+',height='+myHeight);
  with (imagepopup) {

    document.open();
		document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">'+"\n");
		document.write('<html xmlns="http://www.w3.org/1999/xhtml" lang="de" xml:lang="de">'+"\n");
		document.write('<head><title>'+ winName + '</title>'+"\n");
		document.write('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />'+"\n");
		document.write('<meta http-equiv="ImageToolbar" content="no" />'+"\n");
		document.write('<meta http-equiv="Language" content="de" />'+"\n");
		document.write('<style type="text/css" media="print"><!--'+"\n");
		document.write('a{display:none;}'+"\n");
		document.write('--></style>'+"\n");
		document.write('<style type="text/css" media="screen"><!--'+"\n");
		document.write('*{margin:0;padding:0;background: #EBEBEB;border:0 none;}body,div{overflow:hidden;}img{border-bottom:2px solid #263054;}'+"\n");
		document.write('a{padding:6px 14px;text-decoration:none;font: bold 11px Arial, Helvetica, sans-serif;color:#263054;background: #EBEBEB;}p{position:absolute;right:5px;bottom:15px;text-align:right;}'+"\n");
		document.write('a#close{border-right:2px solid #263054;}'+"\n");
		document.write('--></style></head>'+"\n");
		document.write('<body><div>'+"\n");
		document.write('<img src="'+theURL+'" alt="'+altName+'" title="'+altName+'" />'+"\n");
		document.write('<p><a id="close" href="javascript:self.close()">Fenster schlie&szlig;en</a><a href="javascript:window.print()" id="print">Fenster drucken</a>'+"\n");
		document.write('</div></body></html>');
    document.close();
  }
}

function popup (Adresse,features,myWidth,myHeight,isCenter) {
  if(window.screen)if(isCenter)if(isCenter == 'true') {
    var myLeft = (screen.width-myWidth)/2;
    var myTop = (screen.height-myHeight)/2;
    features+=(features!='')?',':'';
    features+=',left='+myLeft+',top='+myTop;
  }
  newpop = window.open(Adresse, "PopUp",features+((features!='')?',':'')+'width='+myWidth+',height='+myHeight);
  newpop.focus();
}
//-->