
function showPopup(url, width, height)
{
	var options = "width=" + width + ",height=" + height + ",resizable=1";
	window.open(url, "Popup", options);
}