﻿
// 4. your hotkeys domain id
var hotkeysDomainName = "madblast.com";
// var hotkeysDomainId = 1498720756;

// 5. the font of your site
var fontFamily = "Trebuchet MS";

// 6. the color of the ads' third line
var listingWWWUrlLinkColor = "00FF00";

// 7. the background color
var backgroundColor = "000000";

// 8. the color of the ads' first line 
var listingTitleLinkColor = "ffffff";

// 8. the color of the ads' second line
var listingDescColor = "666666";

// 9. the color of the related searches box header shading
var relatedSearchesHeaderShading = "eeeeee";

// 10. the color of the related searches links
var relatedSearchesLinkColor = "666666";

// 11. the font color for the "top results >>>" and "Related Searches" lines 
// and also the color of the "related searches" box border.
var titleFontColor = "666666";
// 'yes' to include related searches
// 'no' otherwise
var includeRelatedSearches = "yes";

//  font size in pixels of the listings first line
var listingTitleFontSize = 10;

// font size in pixels of the listings second and third lines
var listingDescFontSize = 10;

// the width of the body content
var bodyWidth = 600;

// the width and height of the iframe 
var iframeWidth = 650;
var iframeHeight = 850; 

function GetHotKeyUrl(searchterm)
{
    var img = document.getElementById('hotkeysAds'), url = ""; 
    if (img && img.src != '')
    {
        url = img.src.replace("&HotKeysTopCategory=&", "&HotKeysTopCategory=" + searchterm + "&");  
        document.getElementById('ad_iframe').src = url;
    }
    else
        document.getElementById('ad_iframe').style = "display: none"; 
}
