﻿
// 4. your hotkeys domain id
var hotkeysDomainId = 1498720756;

// 5. the font of your site
var fontFamily = "Trebuchet MS";

// 6. the color of the ads' third line
var listingWWWUrlLinkColor = "008000";

// 7. the background color
var backgroundColor = "FFFFFF";

// 8. the color of the ads' first line 
var listingTitleLinkColor = "0000CC";

// 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 = "0000CC";
// 'yes' to include related searches
// 'no' otherwise
var includeRelatedSearches = "yes";

//  font size in pixels of the listings first line
var listingTitleFontSize = 9;

// font size in pixels of the listings second and third lines
var listingDescFontSize = 9;

// the width of the body content
var bodyWidth = 800;

// the width and height of the iframe 
var iframeWidth = 800;
var iframeHeight = 600; 

if (document.location.href.indexOf('adsearch') == -1)
{
    bodyWidth = 300;
    iframeWidth = 300;
    iframeHeight = 600; 
    includeRelatedSearches = "no";
}

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"; 
}
