top.window.moveTo(0,0);
if (document.all) {
   top.window.resizeTo(1024,768);

//screen.availHeight;
//screen.availWidth;
}

var message="Welcome to my Site.\n\nCopyright © MC Otake G\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;
