//Open max size window for a non-planetdomain/reseller link
//@param theURL the url
//@param winname window name
//@param features the window.open options
function openMaxWindow(theURL,winname,features)
{
var newWin = openWindow(theURL, winname, features);
maximiseWindow(newWin);
newWin.focus();
newWin;
}
Time to create page: 0.058 seconds