﻿function DownloadPoker(objAnchor)
{
	var objCurrTag = null;
	var arrInputs;
	var strQueryString;    
    var strFlashLang;
    var strCountry;

    strQueryString = "/exit/pokerdownload/tracking.aspx?";

    var eventId	= objAnchor.getAttribute('eventid');
	strQueryString += "eventid=" + eventId;
	strQueryString += "&s=" + document.getElementById("txtAffiliateID").value;
	strQueryString += "&a=" + document.getElementById("txtAdID").value;
	strQueryString += "&b=" + document.getElementById("txtBannerID").value;
	
	strCountry = document.getElementById("txtCountry").value;

	if (strCountry == "12345") {
	    alert("Download Unavailable");
	    return false;
	}
	else {
	    window.location.href = strQueryString;
	    return false;
	}
}
function DownloadPokerByLanguage(objAnchor, Language) {
    var objCurrTag = null;
    var arrInputs;
    var strQueryString;
    var strFlashLang;
    var strCountry;

    strQueryString = "/exit/pokerdownload/tracking.aspx?";
    var eventId = objAnchor.getAttribute('eventid');
    strQueryString += "eventid=" + eventId;
    strQueryString += "&s=" + document.getElementById("txtAffiliateID").value;
    strQueryString += "&a=" + document.getElementById("txtAdID").value;
    strQueryString += "&b=" + document.getElementById("txtBannerID").value;
    strQueryString += "&ul=" + Language;

    strCountry = document.getElementById("txtCountry").value;

    if (strCountry == "12345") {
        alert("Download Unavailable");
        return false;
    }
    else {
        window.location.href = strQueryString;
        return false;
    }
}
function ViewCrossReference(selSelectObject) {
    if (selSelectObject.options[selSelectObject.selectedIndex].value != "") {
        location.href = selSelectObject.options[selSelectObject.selectedIndex].value
    }
}

function showhide(divid, state) {
    document.getElementById(divid).style.display = state;
}
