﻿

// Name:   OpenTellMeMoreWindow
// Author: leeg@eqtr.com - [LG]
// Desc:   Called by "Tell Me More" button on first page of 
//         Application Process. It directs the brower to a new location 
//         dependant on what is selected in the product drop down list
function OpenTellMeMoreWindow()
{
    var sURL;
    
    var lstProductName = document.getElementById( m_ddlProductName );
    
    if( lstProductName != undefined )
    {
        var sWindow = lstProductName.options[lstProductName.selectedIndex].value;
        if( sWindow != null && sWindow.length > 0 )
        {
            switch( sWindow.toLowerCase() )
            {
                case "standard":
                    sURL = "Standard.aspx";
                    break;
                case "premier":
                    sURL = "Argos.aspx";
                    break;
                case "pulse":
                    sURL = "Pulse.aspx";
                    break;
                case "power2":
                    sURL = "Power2.aspx";
                    break;
                case "rspb":
                    sURL = "RSPB.aspx";
                    break;
                case "betterplan":
                    sURL = "betterplan.aspx";
                    break;
                case "rugby":
                    sURL = "Rugby.aspx";
                    break;
                case "standardenergyonline":
                    sURL = "StandardOnline.aspx";
                    break;
                case "pricefix2011":
                    sURL = "PriceFix2011.aspx";
                    break;                          
                case "fixeddiscount2010":
                    sURL = "FixedDiscount2010.aspx";
                    break;
                case "atlanticofp":
                    sURL = "AtlanticOFP.aspx";
                    break;  	                    
            }
            
            window.location.href = "../EnergyProducts/" + sURL;
        }

    }


}


