﻿//var strDomain="http://localhost:4026/giftsflowerstoindia/";
var strDomain="http://www.giftsflowerstoindia.com/";
var httpRequest=makeObject();

function makeObject()
{
    var objRequest;
    if(window.XMLHttpRequest)
    {
        objRequest=new XMLHttpRequest();
    }
    else if(window.ActiveXObject)
    {
        try
        {
            objRequest=new ActiveXObject("Msxml2.XMLHTTP");
        }
        catch(e)
        {
            objRequest=new ActiveXObject("Microsoft.XMLHTTP");
        }        
    }
    return objRequest;
}

function makeselect(obj)
{
    var currencyid=obj.options[obj.selectedIndex].value;
    var currencyname=obj.options[obj.selectedIndex].text;
    document.getElementById("lblFlagImg").innerHTML="<img src=\""+strDomain+"images/"+currencyname+".jpg\" alt=\""+currencyname+"\" title=\""+currencyname+"\" />";
    var loc=location.href;
    httpRequest.open("GET",""+strDomain+"ajaxheader.aspx?currency="+currencyid+"&case=1",true);
    httpRequest.onreadystatechange=showCurrency;
    httpRequest.send(null);    
}

function showCurrency()
{
    if(httpRequest.readyState==4)
    {
        responseCurrency=httpRequest.responseText;
        var arrcurrency=new Array();
        if(responseCurrency.indexOf("|")!=-1)
        {
            arrcurrency=responseCurrency.split("|");
        }        
        var arrproductprice=new Array();
        arrproductprice=document.getElementsByTagName("span");
        //arrproductprice=$('span');
        for(var i=0;i<arrproductprice.length;i++)
        {
            var attr=arrproductprice[i].getAttribute("name");
            if(attr=="ProductPrice")
            {
                arrproductprice[i].innerHTML="Rs."+arrproductprice[i].title+" / "+arrcurrency[1]+" " + (arrproductprice[i].title / arrcurrency[2]).toFixed(2) ;
            }            
        }          
    }    
}
