function OpenWindow(URL,windowName) {  

	features='dependent=yes, top=0, left=0, width=2000, height=1000, scrollbars=1, locationbar=no, menubar=no, resizable=no, status=no';  
  newwin=window.open(URL,windowName,features);
  newwin.focus();
}
 