No Problem

Instead of
<script type="text/javascript">
function CheckSFV(dir,file) {
var width = screen.width/2-300;
var height = screen.height/2-110;
var InfoWin = window.open("checkSFV.php?dir="+dir+"&file="+file, "CheckSFV",
"status=no,toolbar=no,scrollbars=no,resizable=no,menubar=no,width=500,height=110,left="+width+",top="+height);
}
</script>
Use this one
<script type="text/javascript">
function CheckSFV(dir,file) {
var width = screen.width/2-300;
var height = screen.height/2-110;
var InfoWin = window.open("checkSFV.php?dir="+dir+"&file="+file, "CheckSFV",
"status=no,toolbar=no,scrollbars=yes,resizable=no,menubar=no,width=500,height=110,left="+width+",top="+height);
}
</script>
Now you can scroll
If you want your Window to be resizeable use this one
<script type="text/javascript">
function CheckSFV(dir,file) {
var width = screen.width/2-300;
var height = screen.height/2-110;
var InfoWin = window.open("checkSFV.php?dir="+dir+"&file="+file, "CheckSFV",
"status=no,toolbar=no,scrollbars=yes,resizable=yes,menubar=no,width=500,height=110,left="+width+",top="+height);
}
</script>
If you want, you can also edit the size of your window...
<script type="text/javascript">
function CheckSFV(dir,file) {
var width = screen.width/2-300;
var height = screen.height/2-110;
var InfoWin = window.open("checkSFV.php?dir="+dir+"&file="+file, "CheckSFV",
"status=no,toolbar=yes/no,scrollbars=yes/no,resizable=no,menubar=no,width=pixel,height=pixel,left="+width+",top="+height);
}
</script>
In this example you can edit the toolbar, scrollbar and size in pixel to that value you like it

That should be all someone can want to have

MfG Bandi
[EDIT]Wanna have a shortet info ?! See Post above
