function winOpen(URL, windowName, width, height/*, resizable, location, menubar, scrollbars, status, toolbar*/){
	var windowFeatures;
	windowFeatures = '';
	if (width != '' && width != null){
		windowFeatures = windowFeatures+'width='+width+',';
	}
	if (height != '' && height != null){
		windowFeatures = windowFeatures+'height='+height+',';
	}
	
	var swidth = screen.width;
	var sheight = screen.height;
	
	var left = (swidth-width)/2;
	var top = (sheight-height)/2;
	
	windowFeatures = windowFeatures+'left='+left+',top='+top+',';
	/*
	if (resizable){
		windowFeatures = windowFeatures+'resizable,';
	}
	if (location){
		windowFeatures = windowFeatures+'location,';
	}
	if (menubar){
		windowFeatures = windowFeatures+'menubar,';
	}
	if (scrollbars){
		windowFeatures = windowFeatures+'scrollbars,';
	}
	if (status){
		windowFeatures = windowFeatures+'status,';
	}
	if (toolbar){
		windowFeatures = windowFeatures+'toolbar,';
	}*/
	window.open(URL, windowName, windowFeatures);
}