// JavaScript Document

PopupManager.prototype.showPopup=function(url, height, width)
{
	if (height==null)
	{ 
		height=500
	}
	if (width==null) 
	{
	width=500; 
	}
	
	var options = "height=" + height + ", width=" + width + ", location=no, menubar=no, resizable=yes, scrollbars=yes, status=yes, toolbar=no";
	
	var w=window.open(url, '_blank', options, null);
	return w;
}

