function doWindowOpen(win_url, win_name, win_width, win_height, win_menubar, win_toolbar, win_scrollbars, win_status, win_location, win_resizable) {
	var new_win;
 	new_win=window.open(win_url, win_name, 'width=' + win_width + ',height=' + win_height + ',menubar=' + win_menubar + ',toolbar=' + win_toolbar + ',scrollbars=' + win_scrollbars + ',status=' + win_status + ',location=' + win_location + ',resizable=' + win_resizable);
 	new_win.focus();
}
