// JavaScript Document
    function doMe()
    {
    window_size('tellfriend');
    //alert('window_size');
    $('.popMeTop').HideAllBubblePopups();
    $('.popMeBottom').HideAllBubblePopups();
    $('.popMeTop').FreezeAllBubblePopups();
    $('.popMeBottom').FreezeAllBubblePopups();
    $("#tellfriend").fadeToggle('slow');
    $("#main_also").removeClass("bright").addClass("dim");    
    showPopUps = "no";
    }
    function closeMe()
    {
    //alert('here');
    $("#tellfriend").fadeToggle('slow');
    $('.popMeTop').UnfreezeAllBubblePopups();
    $('.popMeBottom').UnfreezeAllBubblePopups();
    $("#main_also").removeClass("dim").addClass("bright");    
    showPopUps = "yes";
    }

    function doMeCoupon()
    {
    window_size('couponfriend');
    //alert('window_size');
    $('.popMeTop').HideAllBubblePopups();
    $('.popMeBottom').HideAllBubblePopups();
    $('.popMeTop').FreezeAllBubblePopups();
    $('.popMeBottom').FreezeAllBubblePopups();
    $("#couponfriend").fadeToggle('slow');
    $("#main_also").removeClass("bright").addClass("dim");    
    showPopUps = "no";
    }
    function closeMeCoupon()
    {
    //alert('here');
    $("#couponfriend").fadeToggle('slow');
    $('.popMeTop').UnfreezeAllBubblePopups();
    $('.popMeBottom').UnfreezeAllBubblePopups();
    $("#main_also").removeClass("dim").addClass("bright");    
    showPopUps = "yes";
    }

