﻿function doNoticeCount(siteName)
{
    // 3 counts of popup with legal message regarding Ralcorp purchase of Post
    /*var count = $.cookie('post_purchase_notice_'+siteName);
    if(count==null)
    {
        count = 0;
    }

    if(count<3)
    {
        window.open("/TrailMixCrunch/legal_notice.aspx", "legal_notice","menubar=no,width=430,height=200,toolbar=no");
        count++;
        $.cookie('post_purchase_notice_'+siteName, count, { path: '/', expires: 10000 });
    }*/
}
