
function ClientRedirect(url, target)
{
    if(target == 'self' || target == '')
    {      
        document.location.href = url;
    }
    else if(target == 'blank')
    {
        window.open(url,'icopalexternal');
    }
}