﻿if ( top == self ) 
{
   top.location.href = "/big-river-gifts.aspx";
}        
function closeWindow()
{
    window.top.hidePopWin();
}
function doDialogShow()
{
    setContext();
    document.body.style.backgroundImage='url(/img/binocular-boy.jpg)';
}
function setContext() 
{
    var currentCountry = window.top.GetStoreSearchCurrentCountry();
    if ( $('country'+currentCountry) )
    {
        $('country'+currentCountry).style.display = 'none';
    }
 
    var itemTitle = window.top.GetItemTitle();
    var itemImageURL = window.top.GetItemImageURL();
    if ( itemImageURL != '' )
    {
        $('itemImage').src = itemImageURL;
        $('itemImage').alt = itemTitle;
    }
}
function GetSearchIndex(targetCountry)
{ 
    var indices = window.top.GetStoreSearchIndices();
    return indices[targetCountry];
}
function CrossStoreSearch(targetCountry)
{
    var hostDomain = (targetCountry == 1) ? ".co.uk" : ".com";
    top.location.href = "http://www.bigrivergifts" + hostDomain + "/gift-search/" + GetSearchIndex(targetCountry) + "/" + targetCountry + "/" + (window.top.GetStoreSearchTerms()) + ".aspx";
}
function SearchUSStore() { CrossStoreSearch(0); }
function SearchUKStore() { CrossStoreSearch(1); }
function SearchDEStore() { CrossStoreSearch(2); }
function SearchJPStore() { CrossStoreSearch(3); }
function SearchFRStore() { CrossStoreSearch(4); }
function SearchCAStore() { CrossStoreSearch(5); }

