﻿<!-- 
    function popUp(strURL,strType,strHeight,strWidth) {
    var strOptions="";
    if (strType=="elastic") strOptions="scrollbars,resizable,menubar=no,toolbar=no,location=no,height="+strHeight+",width="+strWidth;
    window.open(strURL, 'newWin', strOptions);
    }
    
    function PayButtonClicked() {
    //alert(document.getElementById('rblPaymentMethod_1').checked);
    if (document.getElementById('rblPaymentMethod_1').checked == true)
        {
        popUp('paymentprint.aspx?mtd=chq&pps=hb&qty='+ document.getElementById('ddlQty').options[document.getElementById('ddlQty').selectedIndex].value, 'newWin', '800','600');
        }
    }
    
    function PayButtonClicked_Member() {
    //alert(document.getElementById('rblPaymentMethod_1').checked);
    if (document.getElementById('rblPaymentMethod_0').checked == true)
        {
        popUp('paymentprint.aspx?mtd=chq', 'newWin', '800','600');
        }
    else if(document.getElementById('rblPaymentMethod_1').checked == true)
        {
        popUp('paymentprint.aspx?mtd=sto', 'newWin', '800','600');
        }
    }
    
    function PayButtonClicked_Trainer() {
    //alert(document.getElementById('rblPaymentMethod_1').checked);
    if (document.getElementById('rblPaymentMethod_0').checked == true)
        {
        popUp('membership_paymentprint.aspx?mtd=chq', 'newWin', '800','600');
        }
    else if(document.getElementById('rblPaymentMethod_1').checked == true)
        {
        popUp('membership_paymentprint.aspx?mtd=sto', 'newWin', '800','600');
        }
    }
    
    
    
//-->