function openPopup(url, width, height) {
	var options = 'location=no,menubar=yes,scrollbars=yes';
	if (parseInt(width) && parseInt(height)) {
		options += ',width=' + width + ',height=' + height;
	}

	return window.open(url, "popup", options);
}