function getSnapshot()
{
    var d = new Date();
    var strDays = "Sunday Monday Tuesday Wednesday Thursday Friday Saturday";
    var dayOfWeek = strDays.split(" ");
    var country = document.getElementById('snapshotCountry').value
    today = dayOfWeek[d.getDay()];
    document.getElementById('snapshot').innerHTML = '<iframe  width="242"  frameborder="no" src="http://www.gmapinoytv.com/getSnapshot.php?day='+today+'&country='+country+'"></iframe>'  
}
function showDownloadBox(path, file)
{
    if(file)
        top.abc.location = 'class/forcedownload.php?file='+path+file+"&name="+file
}
function opacity(id, opacStart, opacEnd, millisec) {
    //speed for each frame
    var speed = Math.round(millisec / 100);
    var timer = 0;

    //determine the direction for the blending, if start and end are the same nothing happens
    if(opacStart > opacEnd) {
        for(i = opacStart; i >= opacEnd; i--) {
            setTimeout("changeOpac(" + i + ",'" + id + "')",(timer * speed));
            timer++;
        }
    } else if(opacStart < opacEnd) {
        for(i = opacStart; i <= opacEnd; i++)
            {
            setTimeout("changeOpac(" + i + ",'" + id + "')",(timer * speed));
            timer++;
        }
    }
}

//change the opacity for different browsers
function changeOpac(opacity, id) {
    var object = document.getElementById(id).style;
    object.opacity = (opacity / 100);
    object.MozOpacity = (opacity / 100);
    object.KhtmlOpacity = (opacity / 100);
    object.filter = "alpha(opacity=" + opacity + ")";
} 

function changeImgSrc(srcFile,id)
{
    document.SlideShow.src = srcFile;
    document.getElementById('VU').style.opacity=0;
    document.getElementById('VU').style.MozOpacity = 0;
    document.getElementById('VU').style.filter= "alpha(opacity=0)";
    opacity('VU', 0, 100, 2000);
    
    switch(id)
    {
        case 'd0':
            document.getElementById('d1').style.background = "#232222";
            document.getElementById('d2').style.background = "#232222";
            document.getElementById('d3').style.background = "#232222";
            document.getElementById('d0').style.background = "white";
            break;
        case 'd1':
            document.getElementById('d0').style.background = "#232222";
            document.getElementById('d2').style.background = "#232222";
            document.getElementById('d3').style.background = "#232222";
            document.getElementById('d1').style.background = "white";
            break;        
        case 'd2':
            document.getElementById('d0').style.background = "#232222";
            document.getElementById('d1').style.background = "#232222";
            document.getElementById('d3').style.background = "#232222";
            document.getElementById('d2').style.background = "white";
            break;
        case 'd3':
            document.getElementById('d1').style.background = "#232222";
            document.getElementById('d2').style.background = "#232222";
            document.getElementById('d0').style.background = "#232222";
            document.getElementById('d3').style.background = "white";
            break; 
    }
}
function changeImg(src)
{
    
    document.getElementById('monthly_image').innerHTML = '<img id="monthly_main" src="http://www.gmapinoytv.com/uploaded_files/'+src+'" style="width:345px; height:356px;margin-left:10px;">'
}