
var message="Si tiene un proyecto de Web Site por realizar contactenos:\n\n PERU => Email: info@erawebs.com, Lima. - Teléfono:(51-1)9939-9107\n\n CHILE=> Email: chile@erawebs.com , Santiago Centro.- Telf.: (56-2)5544696:";

function click(e) {
if (document.all) {
if (event.button == 2) {
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;