Here ya go rickki... just like you wanted (any problems talk to me on msn)
Stick this javascript on your main page (default.htm or index.htm)
CODE
<script language="JavaScript1.2">
top.window.moveTo(0,0);
if (document.all)
{ top.window.resizeTo(screen.availWidth,screen.availHeight); }
else if
(document.layers || document.getElementById)
{
if
(top.window.outerHeight < screen.availHeight || top.window.outerWidth <
screen.availWidth)
{ top.window.outerHeight = top.screen.availHeight;
top.window.outerWidth = top.screen.availWidth; }
}
</script>
<script type=text/javascript>
var win= null;
function NewWindow(mypage,myname,w,h,scroll){
var winl = (screen.width-w)/2;
var wint = (screen.height-h)/2;
var settings ='height='+h+',';
settings +='width='+w+',';
settings +='top='+wint+',';
settings +='left='+winl+',';
settings +='scrollbars='+scroll+',';
settings +='resizable=no';
win=window.open(mypage,myname,settings);
if(parseInt(navigator.appVersion) >= 4){win.window.focus();}
}
</script>
Once you have that done what you need to do is add the "onclick" into you hyperlink EG
CODE
<a href="#" onclick="NewWindow('open.asp','pop','830','570','no');return false">CLICK HERE TO OPEN</a>
or
CODE
<a href="#" onclick="NewWindow('open.asp','pop','830','570','no');return false"><img src="enter.jpg"></a>
You can rename open.asp to what ever page you want to pop up