I actually use the following function, to open a pop up page :
function ShowPopUp(sUrl, nWidth, nHeight)
{
window.open(sUrl, 'ActPopup', 'width=' + nWidth + ',height=' + nHeight + ',scrollbars, resizable');
if (!bPageIsLoaded)
{
window.location.reload(true);
}
}
How can I whange it to get a center pop up ?
Thanks
function ShowPopUp(sUrl, nWidth, nHeight)
{
window.open(sUrl, 'ActPopup', 'width=' + nWidth + ',height=' + nHeight + ',scrollbars, resizable');
if (!bPageIsLoaded)
{
window.location.reload(true);
}
}
How can I whange it to get a center pop up ?
Thanks
Comment