//********STEP ONE: COPY JAVASCRIPT INTO YOUR WEB PAGE(S) **********


function randomSurvey(scale)
 {
	var expdate = new Date ();
	var surveyCookieName = "ifsurvey_7_05";
	var percentOfferedSurvey = 50;  //CHANGE THIS PARAMETER TO CONTROL SAMPLING RATE
	var surveyLocation = "http://survey.otxresearch.com/SurveyEntry.aspx?e=63b49c40-b141-4539-95c6-d72643383129";
	var popupNewWindow = true;  //or show the survey in the same window.
	
	expdate.setTime (expdate.getTime() + (365 * 24 * 60 * 60 * 1000)); // 1 year from now 
                  var stored_value = GetCookie(surveyCookieName);   
	var dd=new Date();
	cn= Math.round(dd.getTime() / 100) % 100;
	if ((cn <= percentOfferedSurvey) && (stored_value == null))
	{
	        SetCookie(surveyCookieName, "alreadyOffered", expdate);
		window.open(surveyLocation,'new_window','width=700,height=500,resizable=yes,scrollbars=yes');
 }
 }

function SetCookie (name,value,expires,path,domain,secure)
{
        document.cookie = name + "=" + escape (value) +
        ((expires) ? "; expires=" + expires.toGMTString() : "") +
        ((path) ? "; path=" + path : "") +
        ((domain) ? "; domain=" + domain : "") +
        ((secure) ? "; secure" : "");
}

function getCookieVal (offset)
{
        var endstr = document.cookie.indexOf (";", offset);
        if (endstr == -1)
                endstr = document.cookie.length;
        return unescape(document.cookie.substring(offset, endstr));
}

function GetCookie (name)
{
        var arg = name + "=";
        var alen = arg.length;
        var clen = document.cookie.length;
        if( (document.cookie == null) || (document.cookie.length == null))
        {
                return null;
        }
        var i = 0;
        while (i < clen)
        {
                var j = i + alen;
                if (document.cookie.substring(i, j) == arg)
                        return getCookieVal (j);
                i = document.cookie.indexOf(" ", i) + 1;
                if (i == 0) break; 
        }
        return null;
}


//******** END OF STEP ONE **********
