function openPopup(url, width, height) {
	if (!width) width = 380;
	if (!height) height = 200;

	return window.open(url,"popUp","toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no,width=" + width + ",height=" + height);
}
