Page is a not externally linkable
austtr - 12:48 am on May 2, 2001 (gmt 0)
Your following javascript was exactly what I was after... my earlier efforts were showing an error in IE4 but OK in IE5. If I want the new window positioned 50 pixels in from left edge and 50 pixels down from top, what are the syntax changes? Thanks function cPop(url, wide, high) In the BODY: <a href="javascript:cPop('page.html',300,500)">Click for popup window</a>
Hello Tedster...
----------------------------------------------
In the HEAD or External JS file:
{window.open(url,"popup",'width=' + wide + ',height=' + high);
}