/*
http://static.internetbrands.com/partners/afc
*/
// defaults
if (typeof(AFC_RENDER_CLEAN) == 'undefined') { AFC_RENDER_CLEAN = false; } // invoke style-less render if true,
if (window.AFC_RENDER_CLEAN) {
if (typeof(AFC_RENDER_MAX) == 'undefined') { window.AFC_RENDER_MAX = 3; } // ...and render this many ads
if (typeof(AFC_RENDER_DIRECTION) == 'undefined') { window.AFC_RENDER_DIRECTION = 'square'; } // with direction
}
if (!window.AFC_GLUE_STYLESHEET) {
AFC_GLUE_STYLESHEET = "http://static.internetbrands.com/partners/afc/afc_glue.css";
ADS_DISPLAY_URL = "http://static.internetbrands.com/partners/afc/ads.html";
function getCustomPropertyObject(pStr,propName) {
propObj = {};
pairs = pStr.split(",");
for (pc=0;pair=pairs[pc];pc++) {
keyvalue = pair.split(":");
propObj[keyvalue[0]] = propName + ":"+keyvalue[1]+";";
}
return propObj;
}//getCustomPropertyObject
function findElementPosY(obj) {
curtop = 0;
if (obj.offsetParent) {
while (obj.offsetParent) {
curtop += obj.offsetTop;
obj = obj.offsetParent;
}
}//if offsetParent exists
else if (obj.y)
curtop += obj.y
return curtop;
}//findElementPosY
function getGlueCss() {
gcssel = document.createElement("link");
gcssel.setAttribute("rel","stylesheet");
gcssel.setAttribute("href",AFC_GLUE_STYLESHEET);
gcssel.setAttribute("media","screen");
gcssel.setAttribute("type","text/css");
gcssel.setAttribute("charset","utf-8");
return gcssel;
}//getGlueCss
function hasGlueCssFrom(contextNode) {
linkEls = contextNode.getElementsByTagName("link");
foundLinkEl=false;
for(lec=0;(linkel=linkEls[lec]) && (!foundLinkEl);lec++) {
if (
linkel.href
&&
(linkel.href.indexOf(AFC_GLUE_STYLESHEET) != -1)
) {
foundLinkEl = true;
}
}//loop thru link elements
return foundLinkEl;
}//hasGlueCssFrom
headElement = document.getElementsByTagName("head");
if (headElement = headElement[0]) {
hasCss = hasGlueCssFrom(headElement);
if (!hasCss) {
newLinkElement = getGlueCss();
headElement.appendChild(newLinkElement);
}
} else {
htmlRoot = document.getElementsByTagName("html");
if (htmlRoot = htmlRoot[0]) {
hasCss = hasGlueCssFrom(document);
if (!hasCss) {
newLinkElement = getGlueCss();
newHead = document.createElement("head");
newHead.appendChild(newLinkElement);
htmlRoot.insertBefore(newHead,htmlRoot.firstChild);
}
}
}
function getRADLinksHTML(radlinks) {
s = '
'
+ getAdCredit(google_ads[0].image_width)
+ getImgAdUrl(google_ads[0].url,google_ads[0].visible_url,google_ads[0].image_width) + '
';
} else if (google_ads[0].type == "flash") {
s += ''
+
''+ anchorStart + ";" + (activeAdRef.mwsc?getPadding(activeAdRef.unit.lineOnePaddingTop):'') +
'">' +
'' + google_ads[i].line1 + '
' +
''+(activeAdRef.matc ? (anchorStart + ";" + (activeAdRef.matc?getPadding(activeAdRef.unit.lineTwoPaddingTop):'') + '">') : '')+'' +
google_ads[i].line2 + ' ' +
google_ads[i].line3 + (activeAdRef.matc ? '' : '') +'
' +
''+ anchorStart + (activeAdRef.mwsc?getPadding(activeAdRef.unit.lineThreePaddingTop):'') + (activeAdRef.mwsc?getPadding(activeAdRef.unit.lineThreePaddingBottom) : activeAdRef.unit.lineThreePaddingBottom) +
'">' +
getTruncVizUrl(google_ads[i].visible_url) + '
';
}
}/* loop thru text ads */
}/* if at least one ad */
}/* if text ads*/
if (cpmTextAdsCount == 1) {
window.google_content_only = true;
}
return s;
}//getAdsenseUnitsHTML
function getPadding(mProp) {
return mProp.replace(/margin/gi,"padding");
}//getPadding
function getTruncVizUrl(vus) {
if (vus.length >= 21) {
return vus.replace(/([\.\/]+)/g,'$1 ');
} else {
return vus;
}
}//getTruncVizUrl
function slotSorter(slotA,slotB) {
if (slotA.priority == slotB.priority) {
pya = findElementPosY(slotA.adSlotElement);
pyb = findElementPosY(slotB.adSlotElement);
return (pya-pyb);
} else {
return (slotA.priority - slotB.priority);
}
}//slotSorter
// XXX since reflowGoogleAds is evaluated later,
// it must not reference global variables that may have changed
function reflowGoogleAds() {
if (arguments.callee.done) return;
arguments.callee.done = true;
sortedAdSlots = [];
for (sascount=0;daslot=AD_SLOTS[sascount];sascount++) {
sortedAdSlots[sascount] = daslot;
}
sortedAdSlots.sort(slotSorter);
for (j=0,k=0;(daSlot = sortedAdSlots[j]) && (daSlot.unit); j++) {
adBatch = [];
for (l=0;(invAd = AD_INVENTORY[k]) && (l < (daSlot.numAds ? daSlot.numAds : 0));l++,k++) {
adBatch[l] = invAd;
}//loop thru inventory
if (daSlot.adSlotElement) {
daSlot.adSlotElement.innerHTML = getAdsenseUnitsHTML(adBatch,daSlot,true);
setDisplay = (daSlot.ad_collapsible && (!adBatch || adBatch.length == 0))?'none':'block';
daSlot.adSlotElement.style.display = setDisplay;
}
}//loop thru slots
}//reflowGoogleAds
function createReflowWrapper(f1,f2) {
return function() {
if (f1) f1.apply();
if (f2) f2.apply();
}
}
if (!window.PROCESSED_ONLOAD_WRAPPER) {
if (window.addEventListener) {
window.addEventListener("load",reflowGoogleAds,false);
document.addEventListener("DOMContentLoaded",reflowGoogleAds,false);
} else if (window.attachEvent) {
document.attachEvent("onreadystatechange",reflowGoogleAds);
window.attachEvent("onload",reflowGoogleAds);
} else {
onloadWrapper = null;
if (window.onload) {
preExistingOnloadHandler = window.onload;
onloadWrapper = createReflowWrapper(reflowGoogleAds,preExistingOnloadHandler);
} else {
onloadWrapper = createReflowWrapper(reflowGoogleAds);
}
window.onload = onloadWrapper;
}
window.PROCESSED_ONLOAD_WRAPPER = true;
}
function google_ad_request_done(google_ads) {
if (!ACTIVE_AD.unit.isRadLinks) {
var currentAd = ACTIVE_AD;
var isVertical = false;
var isSquare = false;
var isSquareCompact = false;
if (currentAd.unit.googleAdBlockVertical) {
isVertical = true;
}
if (currentAd.unit.googleAdBlockSquare) {
isSquare = true;
}
if (currentAd.unit.googleAdBlockSquareCompact) {
isSquareCompact = true;
}
isDebug=(location.href.indexOf("dodebug=1") != -1);
dString = (isDebug?'onclick="alert(this.innerHTML)" ':"");
isTextAd = (google_ads && google_ads[0] && (google_ads[0].type == "text"));
theAdSlotID = 'afcSlot_'+AD_SLOTS_COUNT;
setAdSlotID = isTextAd?('id="'+theAdSlotID+'"'):'';
var adBlockStart = ''
: 'style="color:#'+currentAd.ad_text+';width:'+currentAd.unit.googleAdBlockPixelWidth+'px;height:'+currentAd.unit.googleAdBlockPixelHeight+'px;border:1px solid #'+currentAd.ad_border+';background-color:#'+currentAd.ad_bg+';" class="googleAdBlock '+(isVertical ? "googleAdBlockVertical" : (isSquare ? "googleAdBlockSquare": (isSquareCompact ? "googleAdBlockSquareCompact": "")))+'">');
var adBlockEnd = '<'+'/div>';
document.write(adBlockStart);
document.write(getAdsenseUnitsHTML(google_ads,currentAd));
document.write(adBlockEnd);
currentAd.adSlotID = theAdSlotID;
currentAd.adSlotElement = document.getElementById(theAdSlotID);
currentAd.numAds = google_ads.length;
if (isTextAd) {
AD_SLOTS[AD_SLOTS_COUNT] = currentAd;
AD_SLOTS_COUNT++;
}
return;
}//not radlinks
}//google_ad_request_done
function BaseGoogAdUnit(
w,h,n,d,mTop,mBottom,fontPixelSize,unitWidth,vUrlFontPixelSize,adTextFontPixelSize,adTextAlign,linesPaddingConfig,
alternates
) {
if ((h == 15) || (d == "radlinks") || (d == "vradlinks")) {
this.isRadLinks = true;
}
this.verticalRadLinksClassValue = ((d == "vradlinks")?" googleVerticalRadLinks":"");
this.width = (w - 2);
this.height = (h - 2);
this.maxNumAds = n;
this.direction = d;
this.marginTop = (mTop || (mTop == 0)) ? "padding-top:"+mTop+"px;" : "";
this.marginBottom = (mBottom || (mBottom == 0)) ? "padding-bottom:"+mBottom+"px;" : "";
isV = (
(this.direction.indexOf("vertical") != -1)
||
(this.direction.indexOf("square") != -1)
);
this.lineOnePaddingTop = (linesPaddingConfig && linesPaddingConfig.lineOneTop) ? ("margin-top:"+linesPaddingConfig.lineOneTop+"px;") : "";
this.lineTwoPaddingTop = (linesPaddingConfig && linesPaddingConfig.lineTwoTop) ? ("margin-top:"+linesPaddingConfig.lineTwoTop+"px;") : "";
this.lineThreePaddingTop = (linesPaddingConfig && linesPaddingConfig.lineThreeTop) ? ("margin-top:"+linesPaddingConfig.lineThreeTop+"px;") : "";
this.lineThreePaddingBottom = (linesPaddingConfig && linesPaddingConfig.lineThreeBottom) ? ("margin-bottom:"+linesPaddingConfig.lineThreeBottom+"px;") : "";
this.textAlign = adTextAlign?("text-align:"+adTextAlign+";"):"";
this.fSize = fontPixelSize?("font-size:"+fontPixelSize + "px;"):"";
this.fFam = (fontPixelSize >= 12) ? "font-family:Arial;" : "font-family:Verdana;";
this.adTextFont = this.fFam;
this.vUrlFont = this.fFam;
this.adTextFsize = adTextFontPixelSize ?("font-size:"+adTextFontPixelSize + "px;"):this.fSize;
this.vUrlFSize = vUrlFontPixelSize?"font-size:"+vUrlFontPixelSize+"px;" : "";
this.vUrlDisplay = ((h!=60) ? "":"display:none;");
if ((w == 125) && (h == 125)) {
this.vUrlDisplay = "display:none;";
}
this.adunitWidth = isV ? ("width:"+(this.width - 7)+"px;") :("width:"+(unitWidth?unitWidth:"155")+"px;");
this.googleAdBlockSquareCompact = (this.direction == "squarecompact");
this.googleAdBlockSquare = (this.direction == "square");
this.googleAdBlockVertical = (this.direction == "vertical") ;
this.googleAdBlockPixelWidth = this.width;
this.googleAdBlockPixelHeight = this.height;
this.alternates = alternates;
}//BaseGoogAdUnit Object
}//online define the above funcs if they've not already been defined on doc.
//cpu/memory saver.
if (!window.AD_UNITS) {
AD_UNITS = {
"728x15RL": new BaseGoogAdUnit(728,15,5,"radlinks"),
"468x15RL": new BaseGoogAdUnit(468,15,3,"radlinks"),
"160x90RL": new BaseGoogAdUnit(160,90,4,"vradlinks",0,3,12),
"200x90RL": new BaseGoogAdUnit(200,90,5,"vradlinks",null,null,null),
"120x90RL": new BaseGoogAdUnit(120,90,4,"vradlinks",0,7,null),
"180x90RL": new BaseGoogAdUnit(180,90,5,"vradlinks",null,null,null),
"728x90": new BaseGoogAdUnit(
728,90,4,"horizontal",null,null,10,170,10,10,null,null,
{
1: new BaseGoogAdUnit(
728,90,4,"horizontal",null,null,25,700,14,16,"center"
),
2: new BaseGoogAdUnit(
728,90,4,"horizontal",null,null,14,350,10,12,"left", {
lineOneTop: 0,
lineTwoTop: 5,
lineThreeTop: 5,
lineThreeBottom: 10
}
),
3: new BaseGoogAdUnit(
728,90,4,"horizontal",null,null,12,230,10,12,"left", {
lineOneTop: 0,
lineTwoTop: 2,
lineThreeTop: 4,
lineThreeBottom: 2
}
)
}
), /* fix 3 -- 4*/
"468x60": new BaseGoogAdUnit(
468,60,2,"horizontal",null,null,11,220,11,11,"left",null,
{
1: new BaseGoogAdUnit(
468,60,2,"horizontal",null,null,16,450,11,12,"center", {
lineOneTop: 0,
lineTwoTop: 4,
lineThreeTop: 4
}
)
}
),
"234x60": new BaseGoogAdUnit(234,60,1,"vertical",10,0,10),/* 5 0 10 */
"238x60": new BaseGoogAdUnit(238,60,1,"vertical",5,0,10),
"200x90": new BaseGoogAdUnit(200,90,1,"vertical",15,0,11),
"180x90": new BaseGoogAdUnit(180,90,1,"vertical",15,0,11),
"160x90": new BaseGoogAdUnit(160,90,1,"vertical",10,0,11),
"120x600": new BaseGoogAdUnit(
120,600,4,"vertical",0,0,12,null,10,12,"left",{lineOneTop: 15 /* 10 20 */, lineTwoTop:4,lineThreeBottom: 2 /* 5*/ },
{
1: new BaseGoogAdUnit(
120,600,4,"vertical",0,0,20,null,10,16,"center", {
lineOneTop: 100, /* 80 */
lineTwoTop: 30,
lineThreeTop: 30,
lineThreeBottom: 210
}
),
2: new BaseGoogAdUnit(
120,600,4,"vertical",0,0,16,null,11,14,"left", {
lineOneTop: 80, /* 100 */
lineTwoTop: 4,
lineThreeTop: 8,
lineThreeBottom: 0
}
),
3: new BaseGoogAdUnit(
120,600,4,"vertical",0,0,16,null,11,14,"left", {
lineOneTop: 40, /* 50 */
lineTwoTop: 4,
lineThreeTop: 8,
lineThreeBottom: 0
}
)
}
), /* 25,5,12 */
"160x600": new BaseGoogAdUnit(
160,600,5,"vertical",0,0,12,null,10,12,null,{lineOneTop: 20, lineTwoTop:4,lineThreeBottom: 5 },
{
1: new BaseGoogAdUnit(
160,600,5,"vertical",0,0,25,null,10,16,"center", {
lineOneTop: 100, /* 80 */
lineTwoTop: 30,
lineThreeTop: 30,
lineThreeBottom: 210
}
),
2: new BaseGoogAdUnit(
160,600,5,"vertical",0,0,16,null,11,14,"left", {
lineOneTop: 100,
lineTwoTop: 4,
lineThreeTop: 8,
lineThreeBottom: 0
}
),
3: new BaseGoogAdUnit(
160,600,5,"vertical",0,0,16,null,11,14,"left", {
lineOneTop: 50,
lineTwoTop: 4,
lineThreeTop: 8,
lineThreeBottom: 0
}
),
4: new BaseGoogAdUnit(
160,600,5,"vertical",0,0,13,null,10,13,"left", {
lineOneTop: 35, /* 40 */
lineTwoTop: 4,
lineThreeTop: 8,
lineThreeBottom: 0
}
)
}
), /* 15 10 12 */
"500x1200": new BaseGoogAdUnit(500,1200,10,"vertical",5,5,16,null,13,13),
"120x240": new BaseGoogAdUnit(120,240,2,"vertical",15,0,10), /* fix 1 -- 2 */
"160x240": new BaseGoogAdUnit(
160,240,2,"vertical",20,0,12,null,10,12,null,null,
{
1: new BaseGoogAdUnit(
160,240,2,"vertical",50,0,16,null,12,14,null,{lineThreeTop: 5}
)
}
),
"336x280": new BaseGoogAdUnit(
336,280,4,"squarecompact",0,0,13,null,11,12,null,{lineOneTop:10/*3*/, lineThreeBottom: 3},
{
1: new BaseGoogAdUnit(
336,280,4,"square",0,0,25,null,14,16,"center", {
lineOneTop: 75,
lineTwoTop: 10,
lineThreeTop: 10,
lineThreeBottom: 90
}
),
2: new BaseGoogAdUnit(
336,280,4,"square",0,0,18,null,13,16,"left", {
lineOneTop: 30,
lineTwoTop: 4,
lineThreeTop: 6,
lineThreeBottom: 20
}
),
3: new BaseGoogAdUnit(
336,280,4,"square",0,0,14,null,11,12,"left", {
lineOneTop: 15,
lineTwoTop: 4,
lineThreeTop: 6,
lineThreeBottom: 5
}
)
}
), /* fix ? 4 ads 13 13 */
"350x200": new BaseGoogAdUnit(
350,200,3,"square",5,10,11,null,10,11,null,null,
{
1: new BaseGoogAdUnit(
350,200,3,"square",0,0,25,null,14,16,"center", {
lineOneTop: 45,
lineTwoTop: 10,
lineThreeTop: 10,
lineThreeBottom: 65
}
)
}
), /* 2 -- 3 ??? */
"300x250": new BaseGoogAdUnit(
300,250,4,"square",8/* 10 */,0,11,null,10,11,null,null,
{
1: new BaseGoogAdUnit(
300,250,4,"square",0,0,25,null,14,16,"center", {
lineOneTop: 70,
lineTwoTop: 10,
lineThreeTop: 10,
lineThreeBottom: 90
}
),
2: new BaseGoogAdUnit(
300,250,4,"square",0,0,14,null,11,14,"left", {
lineOneTop: 20,
lineTwoTop: 2,
lineThreeTop: 4,
lineThreeBottom: 30
}
)
}
), /* fix 2 -- 4 */
"250x250": new BaseGoogAdUnit(250,250,3,"square",20,0,12), /* fix 2 -- 3 */
"200x200": new BaseGoogAdUnit(200,200,2,"square",15,5,12),
"180x150": new BaseGoogAdUnit(180,150,1,"square",40,0,12),
"125x125": new BaseGoogAdUnit(125,125,1,"square",15,0,10)
};
AD_UNITS["728x15"] = AD_UNITS["728x15RL"];
AD_UNITS["468x15"] = AD_UNITS["468x15RL"];
function GoogAd(unit) {
this.unit = unit;
}//GoogAd
}//no need to waste cpu n memory redefining these.
// instantiate
ACTIVE_AD = (AFC_RENDER_CLEAN)
? new GoogAd(new BaseGoogAdUnit(
ad_dimensions.substr(0,ad_dimensions.indexOf('x')), // width
ad_dimensions.substr(ad_dimensions.indexOf('x')+1), // height
AFC_RENDER_MAX,
AFC_RENDER_DIRECTION)) // developer-friendly "clean" ad
: new GoogAd(AD_UNITS[ad_dimensions]); // stock ad
ACTIVE_AD.shouldRenderClean = AFC_RENDER_CLEAN;
ACTIVE_AD.mwsc = window.mwsc;
window.mwsc = null;
ACTIVE_AD.matc = window.matc;
window.matc = null;
if (window.radlinks_display_url) {
ACTIVE_AD.ADS_DISPLAY_URL = window.radlinks_display_url;
}
ACTIVE_AD.priority = window.ad_priority?window.ad_priority:10;
window.ad_priority = null;
ACTIVE_AD.ad_dimensions = ad_dimensions;
ACTIVE_AD.ad_border = ad_border;
ACTIVE_AD.ad_title = ad_title;
ACTIVE_AD.ad_bg = ad_bg;
ACTIVE_AD.ad_text = ad_text;
ACTIVE_AD.ad_url = ad_url;
ACTIVE_AD.ad_collapsible = window.ad_collapsible?window.ad_collapsible:false;
window.ad_collapsible = false;
ACTIVE_AD.google_ad_channel_mirror = window.google_ad_channel;
ACTIVE_AD.newWindow = window.ad_new_window;
window.ad_new_window = null;
ACTIVE_AD.headlineDecoration = window.ad_headline_decoration ? getCustomPropertyObject(window.ad_headline_decoration,"text-decoration") : "text-decoration:underline;";
window.ad_headline_decoration = null;
ACTIVE_AD.vizurlDecoration = window.ad_url_decoration ? getCustomPropertyObject(window.ad_url_decoration,"text-decoration") : "text-decoration:none;";
window.ad_url_decoration = null;
ACTIVE_AD.headlineFSize = window.ad_headline_size ? getCustomPropertyObject(window.ad_headline_size,"font-size") : ACTIVE_AD.unit.fSize;
window.ad_headline_size = null;
ACTIVE_AD.bodyFSize = window.ad_body_size ? getCustomPropertyObject(window.ad_body_size,"font-size") : ACTIVE_AD.unit.adTextFsize;
window.ad_body_size = null;
ACTIVE_AD.urlFSize = window.ad_url_size ? getCustomPropertyObject(window.ad_url_size,"font-size") : ACTIVE_AD.unit.vUrlFSize;
window.ad_url_size = null;
ACTIVE_AD.headlineFont = window.ad_headline_font ? getCustomPropertyObject(window.ad_headline_font,"font-family") : ACTIVE_AD.unit.fFam;
window.ad_headline_font = null;
ACTIVE_AD.bodyFont = window.ad_body_font ? getCustomPropertyObject(window.ad_body_font,"font-family") : ACTIVE_AD.unit.fFam;
window.ad_body_font = null;
ACTIVE_AD.urlFont = window.ad_url_font ? getCustomPropertyObject(window.ad_url_font,"font-family") : ACTIVE_AD.unit.fFam;
window.ad_url_font = null;
if (!window.RADLINKS_ADS_DISPLAY ) {
if (!ACTIVE_AD.unit.isRadLinks) {
google_image_size = (2+ACTIVE_AD.unit.width) + "x" + (2+ACTIVE_AD.unit.height);
} else {
google_image_size = null;
}
google_max_num_ads = ACTIVE_AD.unit.maxNumAds;
if (ACTIVE_AD.unit.isRadLinks) {
google_max_num_ads = '0';
google_num_radlinks = ACTIVE_AD.unit.maxNumAds;
google_max_radlink_len = 20;
}
if (!ACTIVE_AD.unit.isRadLinks) {
if (window.currentTotalAds) {
window.google_skip = window.currentTotalAds;
}
} else {
window.google_skip = null;
}
/* google_ad_section = "default";*/
/* google_page_url = ""; */
google_ad_output = 'js';
if (ACTIVE_AD.shouldRenderClean) {
// text-only ads for CLEAN
google_ad_type = 'text';
} else {
// preserve original behavior
if (!ACTIVE_AD.unit.isRadLinks) {
if (!window.google_ad_type) {
google_ad_type = 'text,image,flash,html';
}
} else {
google_ad_type = null;
}
}
//google_language = 'en';
google_encoding = 'utf8';
if (!window.google_safe) {
google_safe = 'medium';
}
if (window.google_content_only) {
google_targeting = "content";
}
if (window.google_hints) {
window.backup_google_hints = window.google_hints;
} else if (window.backup_google_hints) {
window.google_hints = window.backup_google_hints;
} else {
window.google_hints = "";
}
metaTags = document.getElementsByTagName("meta");
metaInfo = "";
for (mtc=0;(dmt=metaTags[mtc]);mtc++) {
if ((mDesc=dmt.getAttribute("name")) && (mDesc.toLowerCase().indexOf("description") != -1)) {
metaInfo = metaInfo + "," + dmt.getAttribute("content");
} else if ((mKw=dmt.getAttribute("name")) && (mKw.toLowerCase().indexOf("keywords") != -1)) {
metaInfo = dmt.getAttribute("content") + "," + metaInfo;
}
metaInfo = metaInfo.toLowerCase();
}
//if (window.google_hints.indexOf(metaInfo) == -1) {
// window.google_hints += metaInfo;
//}
}//we're not in RADLINKS_ADS_DISPLAY mode
if (!window.AD_INVENTORY) {
AD_INVENTORY = [];
AD_INVENTORY_COUNT = 0;
}
if (!window.AD_SLOTS) {
AD_SLOTS = [];
AD_SLOTS_COUNT = 0;
}
// reset
AFC_RENDER_CLEAN = AFC_RENDER_MAX = AFC_RENDER_DIRECTION = undefined;
// -->