function OpenWindow(url, name, toolbars, left, top, scrollbars, resizable, width, height)
{
var newWin = window.open(url,name,"toolbars="+toolbars+",left="+left+ ",top="+top+",location=0,directories=0,status=no,menubars=0,scrollbars="+scrollbars+",resizable="+resizable+",copyhistory=0,width="+width+",height="+height);
}