selam arkadaşlar

ben aşağıdaki gibi bir kod buldum
fakat bu kod tek satırı pop up içerisinde açıyor.
newwindow2.document.write('</hEAD><BODY><p>This is once again a popup.</p>');
bu satır
acaba buraya kod nasıl ekleriz
yardım lütfen
ben bu araya tek satır değil baya bi kod sıkıştırmak istiyorum.



Alıntı
<script language="javascript" type="text/javascript">
<!--
function popitup2() {
var newwindow2=window.open('','name','height=200,width =150');
newwindow2.document.write('<html lang="en"><hEAD><TITLE>Popup</TITLE>');
newwindow2.document.write('<LINK REL="stylesheet" HREF="js.css">');
newwindow2.document.write('</hEAD><BODY><p>This is once again a popup.</p>');
newwindow2.document.write('<p><a href="javascript:alert(self.location.href)">View location</a>.</p>');
newwindow2.document.write('<p><a href="javascript:self.close()">Close</a> the popup.</p>');
newwindow2.document.write('</BODY></hTML>');
newwindow2.document.close();
}
// -->
</script>

<p>First of all, <a href="javascript:popitup2()">try it</a>.</p>