function OpenWindow(url,intWidth,intHeight) { 
      sub_window = window.open(url, "_blank", "width=" + intWidth + ",height=" + intHeight + ",resizable=1, scrollbars=1") ;
	  sub_window.name = 'sub_window';
}
