﻿function OpenWnd(url, x, y, w, h) {
    window.open(url, "HRSPopup", "width=" + w + ", height=" + h + ", left=" + x + ", top=" + y + ", location=0, menubar=0, resizable=1, status=0, titlebar=0, toolbar=0 ");
}

function OpenWndDevice(url) { OpenWnd(url, 400, 200, 300, 260); }

function OpenWndReport(url) { OpenWnd(url, 50, 50, 1100, 700); }

function PrcHRSEditionSelect(rb_id) {
    document.getElementById('hdnSelectedHRSEdition').value = rb_id;
    var img = document.getElementById('imgHRSEdition');   
    //var price = document.getElementById('priceHRSEdition');
    if (img != null) {
        switch (rb_id) {
            case "rbHRSEditionFull":
                //price.value = "$4,500";
                img.src = "Res/Img/Content/Product/HRSPackageIconGold.png";
                break;
            case "rbHRSEditionLimited":
                //price.value = "$2,500";
                img.src = "Res/Img/Content/Product/HRSPackageIconSilver.png";
                break;
        }
    }
    PrcTotalUpdate();
}

function PrcDeviceSelect(rb_id) {
    document.getElementById('hdnSelectedDevice').value = rb_id;
    var img = document.getElementById('imgDevice');
    //var price = document.getElementById('priceDevice');
    if (img != null) {
        switch (rb_id) {
            case "rbDeviceBiocom4000":
                //price.value = "$495";
                img.src = "Res/Img/Content/Hardware/Small.Biocom_4000.jpg";
                break;
            case "rbDeviceBiocom5000":
                //price.value = "$695";
                img.src = "Res/Img/Content/Hardware/Small.Biocom_5000.jpg";
                break;
            case "rbDeviceBiocom1200":
                //price.value = "$295";
                img.src = "Res/Img/Content/Hardware/Small.Biocom_1200.jpg";
                break;
            case "rbDeviceHRS08WE":
                //price.value = "$595";
                img.src = "Res/Img/Content/Hardware/HRS_08WE.jpg";
                break;
        }
    }
    PrcTotalUpdate();
}

function PrcTotalUpdate() {
    var plink = document.getElementById('hdnSelectedPurchaseLink');
    var sel_edition = document.getElementById('hdnSelectedHRSEdition').value;
    var sel_device = document.getElementById('hdnSelectedDevice').value;
    var price = 0;
    switch (sel_edition) {
        case "rbHRSEditionFull":
            {
                switch (sel_device) {
                    case "rbDeviceBiocom4000":
                        price = "$4,995";
                        plink.value = "http://www.1shoppingcart.com/SecureCart/SecureCart.aspx?mid=CC06A3A7-067D-4D41-AFCA-3CE2331912AF&pid=a6c400e3e8bd4a46922c39b488757d00";
                        break;
                    case "rbDeviceBiocom5000":
                        price = "$5,195";
                        plink.value = "http://www.1shoppingcart.com/SecureCart/SecureCart.aspx?mid=CC06A3A7-067D-4D41-AFCA-3CE2331912AF&pid=27a386e67ee0477795b467cf403ef027";
                        break;
                    case "rbDeviceBiocom1200":
                        price = "$4,795";
                        plink.value = "http://www.1shoppingcart.com/SecureCart/SecureCart.aspx?mid=CC06A3A7-067D-4D41-AFCA-3CE2331912AF&pid=68dd557321514841a414e6e2c0e8ea1f";
                        break;
                    case "rbDeviceHRS08WE":
                        price = "$5,095";
                        plink.value = "http://www.1shoppingcart.com/SecureCart/SecureCart.aspx?mid=CC06A3A7-067D-4D41-AFCA-3CE2331912AF&pid=014973b856df47eab89a29f8326e5239";
                        break;
                }
                break;
            }
        case "rbHRSEditionLimited":
            {
                switch (sel_device) {
                    case "rbDeviceBiocom4000":
                        price = "$2,995";
                        plink.value = "http://www.1shoppingcart.com/SecureCart/SecureCart.aspx?mid=CC06A3A7-067D-4D41-AFCA-3CE2331912AF&pid=c784b155845d4a2680c25ae3d57d6117";
                        break;
                    case "rbDeviceBiocom5000":
                        price = "$3,195";
                        plink.value = "http://www.1shoppingcart.com/SecureCart/SecureCart.aspx?mid=CC06A3A7-067D-4D41-AFCA-3CE2331912AF&pid=1d0ddf08f0534818ad96bdce56787b3f";
                        break;
                    case "rbDeviceBiocom1200":
                        price = "$2,795";
                        plink.value = "http://www.1shoppingcart.com/SecureCart/SecureCart.aspx?mid=CC06A3A7-067D-4D41-AFCA-3CE2331912AF&pid=b2a13264a33e49f5b76d1f7320fac63f";
                        break;
                    case "rbDeviceHRS08WE":
                        price = "$3,095";
                        plink.value = "http://www.1shoppingcart.com/SecureCart/SecureCart.aspx?mid=CC06A3A7-067D-4D41-AFCA-3CE2331912AF&pid=7fc024d75fe34ca0817affcd3d1d4d16";
                        break;
                }
            }
    }    
    document.getElementById('priceTotal').value = price;
}

