﻿// JScript File
//tks mar.29.2010
function DisplayInTitle(casinoId) {
    var titleDisplay = "";
 
    if (casinoId == 1) {
        titleDisplay = "Pamper Casino";
    }
    else if (casinoId == 2) {
        titleDisplay = "AC Dollars";
    }
    else if (casinoId == 3) {
        titleDisplay = "AC Euros";
    }
    else {
        titleDisplay = "Unknown Casino Id"
    }
    //alert("You are now in " + titleDisplay);
    document.title = "You are now in " + titleDisplay;
    return true;
}

function DisplayInAlertBox(casinoId) {
    var titleDisplay = "";
 
    if (casinoId == 1) {
        titleDisplay = "Pamper Casino";
    }
    else if (casinoId == 2) {
        titleDisplay = "AC Dollars";
    }
    else if (casinoId == 3) {
        titleDisplay = "AC Euros";
    }
    else {
        titleDisplay = "Unknown Casino Id"
    }
    alert("You are now in " + titleDisplay);
    document.title = "You are now in " + titleDisplay;
    return true;
}
