Hello all, simple question for you. This is my code:
<SCRIPT TYPE="text/javascript">
<!--
function popup(mylink, windowname)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
href=mylink;
else
href=mylink.href;
window.open(href, windowname, 'width=400,height=323,scrollbars=no');
return false;
}
//-->
</SCRIPT>
I need to add on it a function that put the popup in the middle of the screen.
Also if I can change the backgrond color to black how can I do it?
Thank you for you help.