function open_new (url, left, top, width, height, scrollbars) {  
  
open_new = window.open(url, "CtrlWindow", 
",left=" + left +
",top=" + top +   
",width=" + width +   
",height=" + height +
",scrollbars=" + scrollbars);

}