function C_openWindow(win_url, win_width, win_height) {
	var wnd = window.open(win_url, 
	            		  "", 
	            		  "status=0,toolbar=0,width=" + win_width + ",height=" + win_height + ",menubar=0,location=0,directories=0,scrollbars=1,resizable=1");
}
