//===========================creat XMLHttp element================================================
function ajaxFunction() 
{  
    var xmlHttp;
    try
    {  
        // Firefox, Opera 8.0+, Safari
        xmlHttp=new XMLHttpRequest();
    }
    catch (e)
    {   
        try
        {   
            //Internet Explorer 6.0
            xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); 
        }
        catch (e)
        {    
            try
            { 
                // Internet Explorer 5.5+
                xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
            }
            catch (e)
            {   
                alert("Your browser does not support AJAX!");   
                return false;
            }
        }  
    }
    return xmlHttp;
}
//=====================end of function==============================================================

function goHome(Url)
{
    if(opener!=null)
    {
        if((opener.window.location.href=="http://www.moneypot.in/Home.htm")||(opener.window.location.href=="http://moneypot.in/Home.htm")||(opener.window.location.href=="http://www.moneypot.in/")||(opener.window.location.href=="http://moneypot.in/")||(opener.window.location.href=="http://www.moneypot.in/home.aspx")||(opener.window.location.href=="http://moneypot.in/home.aspx"))
        {
            self.close();
        }
        else
        {
            opener.window.location=Url;
            self.close();
        }
    }
}

function getObjValue(id)
{
    return document.getElementById(id).value;
}

function hideObj(id)
{
    document.getElementById(id).style.display='none';
}

function showObj(id)
{
    document.getElementById(id).style.display='block';
}

function getObject(id)
{
    return document.getElementById(id);
}

function resetObjValue(id)
{
    document.getElementById(id).value="";
}

var sHeight,sWidth
sHeight = screen.availHeight-150; 
sWidth = screen.availWidth;

function Popup()
{
	popupWin = window.open('', 'MPPop', 'HEIGHT=' + sHeight + ',WIDTH='+(sWidth-200)+',resizable=no,toolbar=no,menubar=yes,location=no,scrollbars=yes,left=10,top=10,directories=no,channelmode=no,titlebar=no,fullscreen=no')
    popupWin.focus()
}

function tradingSummary(linkStr)
{
	popupWin = window.open(linkStr,'MPPop','HEIGHT=' + sHeight + ',WIDTH='+(sWidth-200)+',resizable=no,toolbar=no,menubar=yes,location=no,scrollbars=yes,left=10,top=10,directories=no,channelmode=no,titlebar=no,fullscreen=no');
	popupWin.focus()
}	

function GetGameId()
{
    var GameID=document.getElementById("Header1_dropSelectGame").options[document.getElementById("Header1_dropSelectGame").selectedIndex].value;
    var hdnGameId=document.getElementById("Header1_hdnGameID");
    hdnGameId.value=GameID;
}

