

function PopUpWindow(url, height, width, attributes)
	{
	
		var attList;
		
		if (typeof(popUpManager) != "undefined")
		{
		   if(attributes!= "")
		   {
			  attList = attributes + ",width=" + width + ",height=" + height;
			  popUpManager.WindowOpen('NewWin', url, 'newWin', attList);
		   }
		   else			   
		   {	
			   attList = "status=yes,scrollbars=yes,resizable=yes,toolbar=yes,location=yes,left=10,top=10" + ",width=" + width + ",height=" + height;	   
			   popUpManager.WindowOpen('NewWin', url, 'newWin', attList);
		   }
		}
	}

function Enlarge(url)
{
	var attList;
	if (typeof(popUpManager) != "undefined")
	{
	   
	   attList = "status=no,scrollbars=yes,resizable=yes,toolbar=no,location=no,left=10,top=10,width=790,height=600";	   
	   popUpManager.WindowOpen('NewWin', url, 'newWin', attList);
	   
	}

}