// UserType Constants
var UT_UNKNOWN = 0; var UT_SUBSCRIBER = 1; var UT_NEWSSTAND = 2; var UT_MAGICDOWN = 3; var UT_NEWSUBSCRIBER = 4; var UT_CTNREFERER = 5; var UT_AOL = 6; var UT_YAHOO = 7; var UT_EXTRA = 8; var UT_YAGA = 9; var UT_WEB = 10; var UT_SNSAOL = 11; var UT_SNSAOLTV = 12;
// Default UserType
var userType = UT_WEB;
// Curtain Generated Code
var userTypeInclude = "userType = UT_WEB;";
// Check if the include failed...
if (userTypeInclude.indexOf('[') < 0) {
eval(userTypeInclude);
} else {
userType = UT_UNKNOWN;
}
var aolClientBools = new Array(false,false,false,false,false,false,true,false,false,false,false,false,false);
function isInAolClient() {
return aolClientBools[userType];
}