// Prefencia de Portales
function getCookie(Name)
{
  var search = Name + "=";
  if (document.cookie.length > 0) 
  {
    offset = document.cookie.indexOf(search);
    if (offset != -1) 
    {
      offset += search.length ;
      end = document.cookie.indexOf(";", offset);
      if (end == -1) 
        end = document.cookie.length;
      return unescape(document.cookie.substring(offset, end));
    }
  }
  else
    return null;
}
function setCookie(name, value) 
{ 
	fecha_hoy = new Date();
	expire = new Date(fecha_hoy.getFullYear() + 1, fecha_hoy.getMonth(),fecha_hoy.getDate());	
  document.cookie = name + "=" + escape(value) + ((expire == null) ? "" : ("; expires=" + expire.toGMTString()))+ "; path=/";
} 
function verifyPortal()
{	
	portal = getCookie("PortalIni");
	if (portal == "Colombianos Exterior")
	{
		window.location.href = "/colombianosExterior/default.asp";
	}
	if (portal == "Personal")
	{
		window.location.href = "/personal/default.asp";
	}
	
	if (portal == "Personal Plus")
	{
		window.location.href = "/personalPlus/default.asp";
	}
	
	if (portal == "Preferencial")
	{
		window.location.href = "/preferencial/default.asp";
	}
	
    if (portal == "Prestigio")
	{
		window.location.href = "/bancaPrivada/default.asp";
	}
	
	if (portal == "Emprendedor")
	{
		window.location.href = "/emprendedor/default.asp";
	}
	
	if (portal == "Pyme")
	{
		window.location.href = "/pyme/default.asp";
	}
	
	if (portal == "Empresas")
	{
		window.location.href = "/empresas/default.asp";
	}
	
	if (portal == "Gobierno")
	{
		window.location.href = "/gobierno/default.asp";
	}
}
// verifica que este marcado el checkbox para setear 
//el portal inicial
function SetPortal(portal)
{	
	if (document.frm.chkPortalIni.checked)
	{		
		setCookie("PortalIni", portal);
	}
				
	if (portal == "Colombianos Exterior")
	{
		window.location.href = "/colombianosExterior/default.asp";
	}
			
	if (portal == "Personal")
	{
		window.location.href = "/personal/default.asp";
	}
	
	if (portal == "Personal Plus")
	{
		window.location.href = "/personalPlus/default.asp";
	}
	
	if (portal == "Preferencial")
	{
		window.location.href = "/preferencial/default.asp";
	}
  
    if (portal == "Prestigio")
	{
		window.location.href = "/bancaPrivada/default.asp";
	}
	
	if (portal == "Emprendedor")
	{
		window.location.href = "/emprendedor/default.asp";
	}
	
	if (portal == "Pyme")
	{
		window.location.href = "/pyme/default.asp";
	}
	
	if (portal == "Empresas")
	{
		window.location.href = "/empresas/default.asp";
	}
	
	if (portal == "Gobierno")
	{
		window.location.href = "/gobierno/default.asp";
	}
}