/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
function changeCursorToHand(id) {
    document.getElementById(id).style.cursor = 'pointer';
}

function changeCursorToDefault(id) {
    document.getElementById(id).style.cursor = 'default';
}


