var message="Function Disabled!";

///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("alert(message);return false")

function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}
function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}


////////// CONFIGURE THE COUNTDOWN SCRIPT HERE //////////////////

////off    var hour = 1;        //  0 through 23 for the hours of the day
////off    var tz = -5;         //  Offset for your timezone in hours from UTC
////off    var lab = 'tzcd';    //  The id of the page entry where the timezone countdown is to show

////off    function start() {displayTZCountDown(setTZCountDown(hour,tz),lab);}

    // **    The start function can be changed if required   **
////off    window.onload = start;

////////// DO NOT EDIT PAST THIS LINE //////////////////

////off    function setTZCountDown(month,day,hour,tz) 
////off    {
////off    var toDate = new Date();
////off    if (month == '*')toDate.setMonth(toDate.getMonth() + 1);
////off    else if (month > 0) 
////off    { 
////off    if (month <= toDate.getMonth())toDate.setYear(toDate.getYear() + 1);
////off    toDate.setMonth(month-1);
////off    }
////off    if (day.substr(0,1) == '+') 
////off    {var day1 = parseInt(day.substr(1));
////off    toDate.setDate(toDate.getDate()+day1);
////off    } 
////off    else{toDate.setDate(day);
////off    }
////off    toDate.setHours(hour);
////off    toDate.setMinutes(0-(tz*60));
////off    toDate.setSeconds(0);
////off    var fromDate = new Date();
////off    fromDate.setMinutes(fromDate.getMinutes() + fromDate.getTimezoneOffset());
////off    var diffDate = new Date(0);
////off    diffDate.setMilliseconds(toDate - fromDate);
////off    return Math.floor(diffDate.valueOf()/1000);
////off    }
////off    function displayTZCountDown(countdown,tzcd) 
////off    {
////off    if (countdown < 0) document.getElementById(tzcd).innerHTML = "Sorry, you are too late."; 
////off    else {var secs = countdown % 60; 
////off    if (secs < 10) secs = '0'+secs;
////off    var countdown1 = (countdown - secs) / 60;
////off    var mins = countdown1 % 60; 
////off    if (mins < 10) mins = '0'+mins;
////off    countdown1 = (countdown1 - mins) / 60;
////off    var hours = countdown1 % 24;
////off    var days = (countdown1 - hours) / 24;
////off    document.getElementById(tzcd).innerHTML = days + " day" + (days == 1 ? '' : 's') + ' + ' +hours+ 'h : ' +mins+ 'm : '+secs+'s';
////off    setTimeout('displayTZCountDown('+(countdown-1)+',\''+tzcd+'\');',999);
////off    }
////off    }
