﻿//All Javascript functions 
function DisplayMessage()
{

document.clear() ;

}
 
function Right_Click_Disable()
{
if (event.button==2) {
 alert('Sorry... right click is not allowed.') 
}
}

