// JavaScript Document

function click() {
alert('Welcome to Coosai Website') }
function click1() {
if (event.button==2) {alert('Welcome to Coosai Website!') }}
function CtrlKeyDown(){
if (event.ctrlKey) {alert('Welcome to Coosai Website!') }}
document.onkeydown=CtrlKeyDown;
document.onselectstart=click;
document.onmousedown=click1;
