Hello everyone,
I have the below javascript function in my webpage -
function fPopupWindow()
{
vURL = "Webpage.asp"
window.open(vURL,['PopUp1'],'toolbar=no,status=no,scrollbars=no,resizable=yes,width=1025,height=1000,left=20,top=100');
}
But instead of hard-coding the width and position of...