You need a
JS function to do this. It should be called on some event inside some tag - here is one of many ways to do it:
var newWindow
function openNewWin(pageURL, pageName, width, height, top, left)
{
newWindow = window.open(pageURL, pageName,"width=" + width + ",height=" + height + ",top=" + top + ",left=" + left + ",scrollbars=1, resizable=1,toolbar=0,location=0,status=0,menubar= 0");
newWindow.focus()
}
Should be called using something like:
<a href="#" onClick="openNewWin('pageName.asp','winName',490,6 20,25,300);">Click to Open</a>
Wind is your friend
Matt