function showImage(hoehe, breite, bild)
{
ImageWindow = window.open("image.html","Image","width=" + hoehe + ",height=" + breite);
ImageWindow.document.open();
ImageWindow.document.write("<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">");
ImageWindow.document.write("<html xmlns=\"http://www.w3.org/1999/xhtml\">");
ImageWindow.document.write("<head><title>:: BikePage.ch - Tour-Image ::<\/title>");
ImageWindow.document.write("<script language='javascript'>function schliessen(){self.close();}<\/script>");
ImageWindow.document.write("<style type=\"text/css\">");
ImageWindow.document.write("<!--");
ImageWindow.document.write("body { background-image:url(" + bild + "); background-color:black; background-repeat:no-repeat; margin:0 ;background-attachment:fixed; background-position:center center; }");
ImageWindow.document.write("-->");
ImageWindow.document.write("<\/style><\/head><body onload='self.focus();' onblur='schliessen()'><\/body><\/html>");
ImageWindow.document.close();
ImageWindow.resizeTo(hoehe,breite);
ImageWindow.moveTo(screen.width/2 - 300, 0);
}

