// JavaScript Document

function newWindow(url,name,w,h,t,m,s,r,st,l,d,c)
{ var windowOptions = "width=" + w + "," + "height=" + h + "," + "toolbar=" + t + "," + "menubar=" + m +"," + "scrollbars=" + s + "," + "resizable=" + r + "," + "status=" + st + "," + "location=" + l + "," + "directories=" + d + "," + "copyhistory=" + c; window.open(url, name, windowOptions);
}