Hey all,
Is there a way to control the height and width of a pop-up other than explicitly stating like below?
function popUp()
{
newWindowTrue = window.open("", "", "height=525,width=725,scrollbars,"
;
newWindowTrue.focus();
newWindowTrue.document.write("content"
;
newWindowTrue.document.close();
}
The problem is, I either have too much extra blank space on the side or bottom of the popUp.
Thanks in advance.
Is there a way to control the height and width of a pop-up other than explicitly stating like below?
function popUp()
{
newWindowTrue = window.open("", "", "height=525,width=725,scrollbars,"
newWindowTrue.focus();
newWindowTrue.document.write("content"
newWindowTrue.document.close();
}
The problem is, I either have too much extra blank space on the side or bottom of the popUp.
Thanks in advance.