It's best to use a javascript for this.
Use this line to call a JS function called openWin:
<a href="javascript:openWin('YOUR_REF.php','PAGE_NAME');">
Here's the function with a bunch of options.
function openWin(url, name) {
popupWin = window.open(url, name, "menubar=no,resizable=no,alwaysRaised=yes,scrollbars,left=400,top=50,sceenX=300,screenY=200,width=530,height=500");
windowIsOpen = "true";
popupWin.focus();
}
Hope this works for you.
Jon Bertsch