var message="Bienvenidos a .: VANINTEC :."
var message=message+"          " 
i="0"			         
var temptitle=""
var speed="150"
function titler(){
if (!document.all&&!document.getElementById)
return
document.title=temptitle+message.charAt(i)
temptitle=temptitle+message.charAt(i)
i++	
if(i==message.length)
{
i="0"
temptitle=""
}
setTimeout("titler()",speed)
}
window.onload=titler
var message1="VANINTEC - DERECHOS RESERVADOS © 2009";
function click(e) {
	if (document.all) {
		if (event.button==2||event.button==3) {
			alert(message1);
			return false;
		}
	}
	if (document.layers) {
		if (e.which == 3) {
			alert(message1);
			return false;
		}
	}
}
if (document.layers) {
	document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
