﻿var blockedPages = new Array("/email-signup.aspx", "/knee-packet/form1.aspx", "/knee-packet/form2.aspx");

jQuery(function($){
    var runInvite = true; cl(location.pathname);
    for (var i=0;i<blockedPages.length;i++) { if (blockedPages[i] == location.pathname) { runInvite = false; } }
    if (runInvite) { surveyInvite(); }
    
});

function surveyInvite() {
    var complete = (getCookie('surveyCompleted') == 'done') ? true : false;
    var viewedOne = (!getCookie('firstPage')) ? false : ((getCookie('firstPage') != window.location.href.substr(7))) ? true : false;
    if((!complete) && viewedOne) {
        var $surveyInvitation = $j('<div id="surveyInvitation"><img src="http://synviscone.com/~/media/Images/SynviscOne/survey/synvisc-one-transparent.ashx" alt="Synvisc-One"><p>Help us improve the Synvisc-One website.<br />Take part in a brief survey.</p><a href="http://www.surveymonkey.com/s/NJVHVJ2" class="more">Begin survey</a><a href="#" class="close">No thanks</a></div>');
        $surveyInvitation.appendTo('body').hide();
        $surveyInvitation.find('a.close').click(function(e) { $surveyInvitation.jqmHide(); responseAction(); e.preventDefault(); });
        $surveyInvitation.find('a.more').click(function(e) { window.open($j(this).attr('href')); $surveyInvitation.jqmHide(); responseAction(); e.preventDefault(); });
        $surveyInvitation.jqm({modal: true});
        $surveyInvitation.jqmShow();
    }
    else if(!complete && !(getCookie('firstPage'))) { setCookie('firstPage', window.location.href.substr(7), 0.01042 /*~15mins*/, '/'); }
}

function responseAction(){
    setCookie('surveyCompleted', 'done', 180, '/');
}