// JavaScript Document
if (window.location != top.location) 
top.location = window.location; 
// Programmed by arun_rathour@hotmail.com
var message='Copyright by bevoguenow.com'
function click(e) {
if (document.all) {
if (event.button == 2 || event.button==3){
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;




/*document.onselectstart=new Function('return false');
function md(e){return false;}
function dc(){return true;}
//document.onmousedown=md;
document.onclick=dc;
*/
function checkkey(e)
{

ns4 = (document.layers)? true:false
ie4 = (document.all)? true:false
var key;
if(ie4)
key=window.event.keyCode;
else
key=e.which;

if(key == 17)
{
alert('Control key is disabled.');
event.returnValue = false;
return false;
}

}