﻿function gotoLink(link, openInNewWindow)
{
    var temp = window.location.href;
    
    if(ClickHandler.getIsIndex(TemplateId).value)
    {
        link = ClickHandler.getSiteFolder().value + "/" + link;
    }
    
    link = temp.substring(0,temp.lastIndexOf("/")+1) + link;
    
  
    if(openInNewWindow=='true')
    {
        window.open(link);
    }
    else
    {
        window.location.href = link;
    }
    
}