if (self != window.top)
   {window.open(location.href);
   }

var lck = 0;

function l()
   {if (lck === 0)
       {lck = 1;
       }
    else 
       {lck = 0;
       }
   }

function r(hval)
   {if (lck === 0)
       {document.body.style.backgroundColor = hval;
        window.status = 'Click to Lock the Color Changer';
        return true;
       }
    else 
       {window.status = 'Click to Unlock the Color Changer';
        return true;
       }
   }
