popup bei klick

hi… ich hab ne frage:
ich habe hier einen code um ein Popup zu öffnen:

<script type="text/javascript"> function pop(file) { helpwindow = window.open(file,"pophelp","f1,f2,f3"); helpwindow.focus(); return false; } </script> <a href="datei.html" target="_blank" onclick="return pop('datei.html');"> Popup </a>
so das geht ja auch… ich kann da drauf klicken und das Popup öffnet sich…

aber wie mache ich es, dass sich wenn ich auf den link klicke ein Popup öffnet, dass eine bestimmte Größe hat, nach hinten ein wenig durchsichtig ist und nicht verschiebbar ist??

so sollte das in etwa aussehen:
http://www.bilder-hochladen.net/files/1l41-1.jpg

kann mir da jemand helfen?
danke schonmal im Vorraus…

ähmmm das ist javacript

[B]Richtig

Moved - JavaScript[/B]

Da hätte dir google aber auch geholfen…
Hier ein Beispiel:
[html]

.parentDisable { z-index:999; width:100%; height:100%; display:none; position:absolute; top:0; left:0; background-color: #ccc; color: #aaa; opacity: .5; filter: alpha(opacity=50); } #popup { width:200; height:100; position:absolute; top:0px; left:200px; color: #000; background-color: #fff; }
Please click
<h1>Hello</h1>
Place a DIV, first thing, on the main page.
z-index:999; width:100%;
height:100%; display:none; position:absolute; top:0; left:0;  
If you feel like getting fancy, you could set the alpha transparency of the
div to like 50 percent or something. Then when you open the other
window, first show this div. You will have issues with select boxes
and other buggy things, ... the easiest way to deal with them is to
set them to display:none while the child window is open.
<br><a href="#" onClick="return pop()">Popup</a>
[/html]