
function changeCursor()
{
document.body.style.cursor="pointer";
}

function changeCursorBack()
{
document.body.style.cursor="text";
}

