self.resizeTo(1024,768);
var message="Welcome to my Site.\n\nDesign and UNAM Photographs Copyright © MC Otake G\nThis design is my property and I'd appreciate if you didn't copy it.\n\nThank you for visiting!"; // Message for the alert box
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;
