function popCustom(url, options)
{
	
	if (typeof(popUpManager) != "undefined")
	{
		popUpManager.WindowOpen('NewWin', url, 'newWin', options);
	}
}

function pop(url)
{
	options = "status=yes,scrollbars=yes,resizable=yes,toolbar=yes,location=yes,width=780,height=550,left=10,top=10";
	if (typeof(popUpManager) != "undefined")
	{
		popUpManager.WindowOpen('NewWin', url, 'newWin', options);
	}
}
