Betrifft Generatoren

Stine
Habe bei die Generatoren überarbeitet und auch hinbekommen, dass mit Doctype alle Generatoren im Firefox funktionieren.

Bei allen Generatoren ohne Doctype wie folgt vorgehen:

suche:
php:
1:
<html>


ersetze mit:
php:
1:
2:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml">


im Generatoren code alle form.blabla.value +blabla mit dem jeweiligen Formnamen document. davorsetzen.
Hier mal ein abgeändertes Beispiel vom Bildlinkgenerator (hier gen_bildlink.php:

php:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
<script language="JavaScript" type="text/javascript">
<!--
// © by www.joetho-web.de

function code()
{

 var txt "<a href=\""+document.form.ah.value+"\" title=\""+document.form.a0.value+"\""+document.form.ah2.value+"><img src=\""+document.form.aa.value+"\" width=\""+document.form.ac.value+"\" height=\""+document.form.bd.value+"\" border=\"0\" alt=\""+document.form.ac3.value+"\" "+document.form.ah0.value+"</a>\n";

 document.form.text.value txt;

}
function preview() {
if(document.form.text.value){
look=open("","Preview","width=600,height=200,top=100,left=200,'resizable=1,status=0,menubar=0,toolbar=0,scrollbars=0,location=0,directories=0");
look.document.write('<html><head>\n');
look.document.write(document.form.text.value+'\n</head><body style="margin: 40px;">\n');
look.document.write('</body></html>');}
else{alert('Bitte erst den "Code erstellen"');}
}
//-->
</script>