can be done thru either javascript
Code:
<script type="text/javascript">
// <![CDATA[
function winPop(url, xOffset, yOffset) {
popIt = window.open(url, 'popup', 'location=1, status=1, menu=1, toolbar=1');
popIt.moveTo(xOffset,yOffset);
}
// ]]>
</script>
or CSS
HTML Code:
<style type="text/css">
<!--
selector {
position: absolute;
top: 00px;
left: 00px;
}
// -->
</script>
only problem with the css version is that you would need to create a class / identity for each of the popup windows, but at the same time its good for active page elements, rather then a new page, which Javascript would be better for I believe
Bookmarks