// record flash detection w/ InsightFirst
var theCookie = document.cookie;
var lastChar;
var firstChar = theCookie.indexOf("if_nt_flashVer");
var keyValue = "";

if(firstChar >= 0){
	
	lastChar = theCookie.indexOf(';', firstChar);
	if (lastChar < 0){
		lastChar = theCookie.length;
	}
	keyValue = theCookie.substring(firstChar, lastChar);
	
	edge_var += "&" + keyValue;
}