﻿/* all sorts of odds and ends for bandai uk */

/* selfPopup
 * open popup window with href determined from the href attribute on the anchor:
 * <a href="index.html" onclick="return selfPopup(this,300,400);">Index</a>
 * dominic winsor, get2dom.com
 */
function selfPopup( loc, x, y ) {
   LeftPosition = (screen.width) ? (screen.width-x)/2 : 0;
   TopPosition = (screen.height) ? (screen.height-y)/2 : 0;
   window.open(loc.href,"","toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=1,copyhistory=0,width="+x+",height="+y+',left='  +LeftPosition +  ',top='  +TopPosition +"");
   return false;
}


/* stuff to brand Google Custom Search box */
function clearSearchBg() {
    csbeBg = "#fff url(http://www.google.com/coop/intl/en/images/google_custom_search_watermark.gif) no-repeat";
    if ($(".search-box").val() == '') { $(".search-box").css("background", csbeBg); }
}

$(document).ready(function() {
    clearSearchBg();

    $(".search-box").focus(function() {
        $(this).css("background", "#fff");
    }).blur(function() {
        clearSearchBg();
    });
});