function popupPicts(URL, variables, wName, w, h) {
	if (w > 0 && h > 0) {
		winprops = 'height='+h+',width='+w+',top=20,left=0,scrollbars=1,resizable';
	//	alert(URL);
	//	URL += "?"+encodeURIComponent(variables);
	//	URL += "?"+escape(variables);
		URL += "?"+variables;
	//	alert(URL);
		new_win = window.open(URL, wName, winprops)
		//new_win = window.open(URL, wName, "width="+w+", height="+h+", location=no, menubar=no, scroll=1, resizable=no, toolbar=no, statusbar=no");
	} else {
		new_win = window.open(URL, wName, "");
	}
	return;
};

