");
}
}
// Page is not a test page, add the sticky ad
else{
// Create the inner div element
var innerDiv = document.createElement("div");
innerDiv.className = ad_name;
// Get a reference to the body element
var body = document.getElementsByTagName("body")[0];
// Insert the outer div as the first child of the body
body.insertBefore(innerDiv, body.firstChild);
}