// JavaScript Document
window.moveTo(0,0);
if (document.all) {
top.window.resizeTo(screen.availWidth,screen.availHeight);
}
else if (document.layers||document.getElementById) {
if (top.window.outerHeight<screen.availHeight||top.window.outerWidth<screen.availWidth){
top.window.outerHeight = screen.availHeight;
top.window.outerWidth = screen.availWidth;
}
}

message = "Function Disabled";
function NoRightClick(b) {
   if(((navigator.appName=="Microsoft Internet Explorer")&&(event.button > 1))
   ||((navigator.appName=="Netscape")&&(b.which > 1))){
   alert(message);
   return false;
   }
}
document.onmousedown = NoRightClick;

function writeCopyright()
{
	var str = new Date().getFullYear();
	var iLen = String(str).length;
    PrtStr = String(str).substring(iLen, iLen - 2);

  document.write("&copy; 20", PrtStr, " Double Act. All rights reserved.");
}

