







// Deshabilitar click derecho 
var message="Easy Store: Sistema de comercio electronico autogestionable\n\nEs un producto de Tecnopatagonia\n\nTecnopatagonia soluciones informaticas para empresas\n\nwww.easystore.com.ar\n\nwww.tecnopatagonia.com.ar";

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;