﻿function PumBuyNowShowCustomise(photoId, buyNowKey,chkCustBuyNow)
{
    
    if($get(chkCustBuyNow).checked){

        $Communicator.fireClientListener(
        this
        , 'PhArt.UI.Modules.Foundation.OrderPrint.Show'
        , {PhotoId:photoId
        ,IsBuyout:false
        ,BuyNowKey:buyNowKey}
        );
    
        return false;
    }else{
        return true;
    }
        
}

function PumBuyNowShowMoreInfoPopup(targetControlID,contentText)
{
    $get('divPumBuyNowMoreInfoContent').innerHTML=contentText;
    
    PhArtAjax.Animation.Popup.Show(
    targetControlID
    ,'divPumBuyNowPopup'
    ,'bottom'
    ,0
    ,0);
}
