// david carter-tod - wccartd@wcc.vccs.edu
// http://www.wcc.vccs.edu/dtod/mylicense.txt

function deselect(){
	if (document.selection) {
		//document.selection.empty();
		document.selection.clear();
		Copied=document.body.createTextRange();
		Copied.findText("Please do not copy or print this page");
		Copied.execCommand();
	}
	else if (window.getSelection){window.getSelection().removeAllRanges();}}

if (!(location.href.indexOf("/bin/common/grade_asmt.pl")>1 && location.href.indexOf("&subroutine=analysis")>1)){
	timerID=setTimeout('setInterval("deselect()", 5)',2000);
	document.writeln("<span style=\"display:none;\">Please do not copy or print this page.</span>");
}