
function hello() 
{
    alert("Hello!");
}


function mouseclic(sender, args)
{
   sender.Fill="LightBlue";
} 


function mouseup(sender, args)
{
   sender.Fill="Yellow";
} 

