function goPage(sSection,sMain,sPage)
{
	var sLocation = "";
	
	if (sSection == "Default")
	{
		sLocation = sSection + '.aspx';
	}
	else
	{			
		if (sMain == "-1")		/* For Internal Section Pages */
			sMain = '0-1';
		
		sLocation = sSection + '-' + sSection + '-' + sMain + '-' + sPage + '.aspx';
	}
    //alert('Redireccion: ' + sLocation);
	window.location = sLocation;
}

function goPageClients(sSection,sMain,sPage,sType,sItemId)
{
	var sLocation = "";	
	var sOtro = "";
	if (sMain == "-1")/* For Internal Section Pages */
	{		
		sMain = '0-1';
		sOtro = '-0'; //caracter de relleno para diferenciar la regla de armado de url
	}
		
	if (sType != "")
		sType = sType + '-'; /* For types */
		
	if (sItemId != "")		/* For Client Category and Case Studies Pages */
		sMain += '-' + sItemId
		
	sLocation = sType + sSection + '-' + sSection + '-' + sMain + '-' + sPage + sOtro + '.aspx';
	//alert('Redireccion: ' + sLocation);	
	window.location = sLocation;
}
function clickLink(sFTB)
{
	var sPage = "../Mgmt/LinkFileAdd.aspx?ftb=" + sFTB;
	OpenCenteredPopup(sPage,'Link',640,500,'','yes');	
}