<!--
// Elimina todos os frames
if (top.location != location) top.location.href = location.href 
// --> 

<!--
// Legenda na Barra de Status
defaultStatus="Cosif Eletrônico - (http://www.cosif.com.br)"
// -->

<!--
// Checa Navegadores
var browser = navigator.appName
// -->

<!--
// Desabilita o clique com o botão direito
function rightclick() {
	if (event.button==2||event.button==3) {
		oncontextmenu = 'return false';
	}
}
document.onmousedown = rightclick
document.oncontextmenu = new Function("return false;")
// --> 

<!--
// Disabilita a seleção do texto com o laço
if (typeof document.onselectstart != "undefined") //IE
	document.onselectstart = function(){return false}
else if (typeof document.body.style.MozUserSelect != "undefined") //FF
	document.body.style.MozUserSelect = "none"
else // CH, SF
	document.body.onmousedown = function(){return false}
// -->

<!--
// Disabilita as teclas com CTRL
function ctrlkey(k) {
	if (browser=="Microsoft Internet Explorer") {
		if (event.keyCode==17) {
			return false;
		 } 
	}

	if (browser=="Netscape") {
		if (k.which==17) {
			alert("A tecla CTRL não é permitida neste sítio!")
			return false;
		}
	}   
}
if (document.layers) window.captureEvents(Event.KEYPRESS);  
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (document.layers) window.captureEvents(Event.MOUSEUP);
document.onkeydown = ctrlkey; 
// -->

<!--
//Favoritos
var bookmarkurl="http://www.cosif.com.br/"
var bookmarktitle="Cosif Eletrônico - Portal de Contabilidade "
function favoritos(){
	if(browser=="Netscape") {
		alert ("Aperte CTRL+D para adicionar nos seus Favoritos")
	} else if(browser=="Microsoft Internet Explorer") {
		window.external.AddFavorite(bookmarkurl,bookmarktitle);
	}
}
// -->
