function protectweb()
{
	return(false);
}

function emptyselection()
{
	document.selection.empty();
	
}

function protectkey()
{
if(event.shiftKey)
{
	return(false);
}
}
document.onselect=emptyselection;
document.oncopy=emptyselection;
document.onbeforecopy=protectweb;


document.oncontextmenu=protectweb;
document.onselectstart=protectweb;

document.onpaste=protectweb;
document.onbeforecopy=protectweb;

