Hallo zusammen. In nachstehenden Script stellen wir eine Ausgabeseite dar, die sich automatisch in der Größe verändert. Gewollt ist aber auch, dass die Titel- und die Menüleiste ausgeblendet wird - geht das und wie??
<perl>
get "Artikelnummer==$artikel","zubehoer";
out "<html>\n";
out "<head>\n";
out "<title>$Bezeichnung</title>\n";
### CSS-Styles ausgeben ###
out "<style type=\"text/css\"><!--\n";
out "a:link { font-family:Verdana,Arial,Helvetica; font-size:10pt; font-weight:500; text-decoration:none; color:#980000; }\n";
out "a:visited { font-family:Verdana,Arial,Helvetica; font-size:10pt; font-weight:500; text-decoration:none; color:#980000; }\n";
out "a:hover { font-family:Verdana,Arial,Helvetica; font-size:10pt; font-weight:500; text-decoration:underline; color:#980000; }\n";
out "body { font-family:Verdana; font-size:12px; color:#000000; }\n";
out "table { font-family:Verdana; font-size:12px; color:#000000; }\n";
out "--></style>\n";
out "</head>\n";
out "<body onLoad=\"window.resizeTo(500,600)\">\n";
out "<table style=\"width:100%;\" cellspacing=\"1\" cellpadding=\"2\">\n";
### Bezeichnung ###
out "<tr><td colspan=\"2\" style=\"background:#CCCCCC;\"><b>$Bezeichnung</b></td></tr>\n";
out "<tr>\n";
### Bild ###
out "<td style=\"width:200px; background:#CCCCCC; vertical-align:top;\"><img src=\"http://glebedata2.de/files/$Bild\" width=\"200\"></td>\n";
### Beschreibung ###
out "<td style=\"vertical-align:top;\">" . convert_br($Beschreibung) . "</td>\n";
out "</tr>\n";
### Handbuch ###
out "<td style=\"background:#CCCCCC;\">";
if($Handbuch ne "") { out "<a href=\"http://glebedata2.de/files/$Handbuch\">Technisches Handbuch</a>"; }
out "</td>\n";
### Artikel-Nr. ###
out "<td>Artikel-Nr.: <b>$Artikelnummer</b></td>\n";
out "</tr>\n";
out "<td style=\"background:#CCCCCC;\"></td>\n";
### Einzelpreis ###
out "<td>Einzelpreis: € $Einzelpreis <font size=\"-1\">inkl. MWSt.</font></td>\n";
out "</tr>\n";
### Herstellerlogo ###
if($HerstellerLogo ne "") { out "<br><center><img src=\"http://glebedata2.de/files/$HerstellerLogo\"></center>\n"; }
out "</body>\n";