<!--- begin display -->
var bColor = '#e5ecf6'
var project = 'The Soul of Kazakhstan'
Protokoll = self.location.protocol;
Pfad = self.location.pathname;
Basis = Protokoll + '//' + Pfad.substring(1,Pfad.length-11)
neues_Fenster = null;
var nytt = false;
//function errorTrap() {return true;}
//Window.onerror = errorTrap;

function Zeigen(Bild0,Titel0,Desc0,Breite0,Hoehe0)
{
   Bild = Bild0;
   Titel = Titel0;
   Desc = Desc0;
   Breite = Breite0;
   Hoehe = Hoehe0;
   //if(window.resizeTo)
	//zu();
	sichtbar();
	//setTimeout("sichtbar()",1000);
}

function sichtbar()
{  
   Fenster_Hoehe = Hoehe + 70;
   Fenster_Breite = Breite + 0;
   Optionen = 'toolbar=0,location=0,left=0,top=10,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,height='+Fenster_Hoehe+',width='+Fenster_Breite;
   neues_Fenster = window.open('','',Optionen)
   with (neues_Fenster) 
   {    
      document.writeln('<html>\n<head>\n<title>' +project+ '  * ' + Titel + ' * </title>\n');
      document.writeln('<style type="text/css">\n');
      document.writeln('<!--\n');
      document.writeln('tt.tbsg { font-family:Verdana,Courier; font-size:11px; font-weight:normal; color:#979797; }\n');
      document.writeln('tt.tspace { font-family:Verdana,Courier; font-size:4px; font-weight:lighter; color:#ffffff; }\n');
      document.writeln('a:link { color:#979797; text-decoration:none; }\n');
      document.writeln('a:visited { color:#979797; text-decoration:none; }\n');
      document.writeln('a:active { color:#979797; text-decoration:none; }\n');
      document.writeln('a.an { text-decoration:none; }\n');
      document.writeln('//-->\n');
      document.writeln('</style>\n');
      document.writeln('</head>\n');  
      document.writeln('<body bgcolor="' +bColor+ '" marginwidth=0 marginheight=0 leftmargin=0 topmargin=0 rightmargin=0 onLoad="if(window.focus) window.focus()" onBlur="self.close()">\n');
      document.writeln('<table border="0" cellspacing="0" cellpadding="0" align="center" valign="center">\n<tr>\n<td align="center">');
      document.writeln('<img src="'+Bild+'" width='+Breite+' height='+Hoehe+' vspace=0 hspace="0" border=0 alt="'+Titel+'"></td>\n');
      document.writeln('</tr>\n<tr>\n<td align=center valign=center><tt class=\"tspace\"><br></tt><tt class=\"tbsg\">' + Desc + '</tt></td>\n');
      document.writeln('</tr>\n</table>\n<tt class=\"tspace\"><br></tt>\n');
      document.writeln('<center>\n');
      document.writeln('<a href="JavaScript:onClick=self.close()"><tt class=\"tbsg\">&nbsp;Close</tt></a>\n');
      document.writeln('</center>\n');
      document.writeln('</body>\n</html>');
      document.close();
   }
}

function zu()
{
   if (neues_Fenster != null)
     if (!neues_Fenster.closed)
        if (neues_Fenster.close)
           neues_Fenster.close(); 
}
<!-- end display -->