﻿function substituirat() {
	if(document.all) {
		window.clipboardData.setData('Text', 'CopyRight: Guia de Casamento!')
		}
}

function sendfalse() {
	return false
}
function ratomove(e) {
	if (e.which==1) { 
		window.releaseEvents(Event.MOUSEMOVE);
		window.onmousemove=null;
	}
}
function ratomove2(e) {
	if (e.which==1) { 
		window.captureEvents(Event.MOUSEMOVE);
		window.onmousemove=sendfalse;
	}
	if (e.which==3) {
		return jk();
	}
}
function ct() {
	hg=event.button;
	if (hg==2||hg==3) jk();
}
isie=document.all;  // explorer
isne=document.getElementById;  // netscape
if (isie) { 
	if (isne) {
		document.oncontextmenu=sendfalse;
		document.onselectstart=sendfalse;

	}
	else { document.onmousedown=ct } 
}
if (isne&&!isie) {
	document.onmousedown=ratomove2;  // se usar 'sendfalse' fecha o clic em formulario
	document.onmouseup=ratomove2;
	document.oncontextmenu=sendfalse
}


if (document.layers) {
	window.captureEvents(Event.MOUSEUP|Event.MOUSEDOWN);
	window.onmousedown=ratomove2;
	window.onmouseup=ratomove
}