noget i denne stil???
1.html
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "
http://www.w3.org/TR/html4/loose.dtd"><html><head><meta http-equiv="content-type" content="text/html; charset=iso-8859-1"><title>Ingen titel</title></head>
<body>
<a href="2.html" onclick="window.open('2.html');return false;">Åben 2.html og klik på billedet ;)</a><br>
<textarea rows="5" name="S1" cols="50" id="tekst"> </textarea>
</body></html>
2.html
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "
http://www.w3.org/TR/html4/loose.dtd"><html><head><meta http-equiv="content-type" content="text/html; charset=iso-8859-1"><title>Ingen titel</title>
<style type="text/css">
</style>
<script type="text/javascript">
<!--
function indsaetbillede(billede){
standardsti="./billeder/";
if(curnode=window.opener.document.getElementById("tekst").childNodes.item(0)){
curnode.data=curnode.data+"<img src=\""+standardsti+billede+"\" alt=\"\">";
}else{
newnode=document.createTextNode("<img src=\""+standardsti+billede+"\" alt=\"\">");
window.opener.document.getElementById("tekst").appendChild(newnode);}
}
//-->
</script>
</head>
<body>
<img src="b1.jpg" onclick="indsaetbillede('b1.jpg');"><br>
<img src="b2.jpg" onclick="indsaetbillede('b2.jpg');"><br>
<img src="b3.jpg" onclick="indsaetbillede('b3.jpg');"><br>
</body></html>