function addToCart()
{
$(".loadingText").show();
$(".upSell").hide();
$("#TB_closeAjaxWindow").hide();
//$("#BlankFrame").attr("onLoad","");
//$("#BlankFrame").attr("onLoad","javascript:iframeLoaded();");
$("#BlankFrame").load(function () {
    $("#TB_closeAjaxWindow").hide();
    $(".loadingText").hide();
    $("#TB_ajaxContent").css("width","502px");
    $("#TB_ajaxContent").css("overflow","hidden");
    $(".upSell").show();
});

document.orderForm.submit();

}

function iframeLoaded()
{
$(".loadingText").hide();
$(".upSell").show();

}

function reloadMe()
{
window.location.reload(location.href);
}
