﻿var _baseUrl = "";

function ShowMe() {
    alert("Click Me");
    return false;
}

function goByDate(obj,imgId)
{    
    var d=document.getElementById(obj);
    
    if(d.style.display=='none')
    {
         d.style.display='block';
         document.getElementById(imgId).src = _baseUrl + '/Designs/icon_ms.gif';      
    }
    else 
    {  
       d.style.display='none';
       document.getElementById(imgId).src = _baseUrl + '/Designs/icon_ps.gif';
    }
}  

//-----quyetnv87----------//


function ShowTabByDate()
{
   var startDate= new Date(); 
    startDate.setFullYear(2009,9,28);
    var endDate= new Date(); 
    endDate.setFullYear(2009,10,8);
    var today = new Date();
    if (today>startDate && today<endDate)
    {
        window.location="?SortID=1&Day="+today.getDate();
    }
    else if(today<=startDate)
    {
        window.location="?SortID=1&Day=28";
    }
    else if(today>=endDate)
        window.location="?SortID=1&Day=8";
}
//---- End quyetnv87----//