Yes, but you'll have to use code like this:
<script language="javascript" id="jcSpawn">
// Jimco Add-ins Spawn JavaScript
// This script is freely redistributable. //-->
function spawnJimcoPopup(url, name, options, h, w, x, y, scaleType)
{
var windowOptions;
if (scaleType == 'percent')
{
w = (w * screen.availWidth) / 100;
h = (h * screen.availHeight) / 100;
}
if (x == 'center')
{
x = (screen.availWidth - w) / 2;
y = (screen.availHeight - h) / 2;
}
windowOptions = options + ',width=' + w + ',height=' + h + ',left=' + x +
',top=' + y;
newWindow = window.open(url, name, windowOptions);
newWindow.focus();
}
</script>
</head>
<a href="index.htm"
onclick="spawnJimcoPopup('index.htm','47D470F1EF574A1490A4EADDA459887C','too
lbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resiza
ble=no','200','200','center','center','pixel');return false;">page</a>