Quote:
Originally Posted by kadafi_alive
I know that it can be done with javascript like:
javascript  penNewWindow('link','height=416,width= 575,toolbar=no,scrollbars=yes,left=0,top=0')
but how would you implement that in the vb template?
|
I have something like that in some html I use ..
Code:
<a onclick="MyWindow=window.open('FileYouWantToShowInTheWindowHere.php','MyWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=400,height=300,left=150,top=150'); return false;" href="#">TextOrImageHere</a>
(watch out, vB adds spaces into the above code as the line is so long)
Is that the sort of thing you're after?