function Setin(Cell,Cursor)
{
  Cell.style.backgroundColor = "#6699CC ";
  Cell.style.cursor = Cursor;
}

function Resetin(Cell)
{
  Cell.style.backgroundColor = "#3973AC";
}// JavaScript Document

function Set(Cell,Cursor)
{
  Cell.style.backgroundColor = "#3973AC";
  Cell.style.cursor = Cursor;
}

function Reset(Cell)
{
  Cell.style.backgroundColor = "#6699CC";
}// JavaScript Document