﻿function ChangeToWaitCursor()
{
document.body.style.cursor='wait';
}
function ChangeToDefaultCursor()
{
document.body.style.cursor='auto';
}