function rd()
{
    var ds = new Array('checkInDate-Deal', 'checkOutDate-Deal');
    for(i in ds)               
    {
        el = document.getElementById(ds[i]);
        if(el)
            el.value = 'mm/dd/yyyy';
    }
} 

function rm()
{
    var m = document.getElementById('discountMonth'); 
    if(m)
        m.selectedIndex = 0;    
}                             
