// verhindert Mausklick und Strg-Taste im Dokument
// erzwingt das Laden im eigenen Frameset
// für Microsoft und Netscape
var debugMode=false;


function cr(e)
{
  if((document.all && (event.ctrlKey == true || e == "M"))
      || (document.layers && e.modifiers == event.CONTROL_MASK))
    {
       alert('©2005 Copyright Friedrich Walz www.maneskinns.de');
       return(false)
    }
}

if(document.layers)
{
    document.captureEvents(Event.MOUSEDOWN);
    document.onmousedown=cr();
    document.captureEvents(Event.KEYPRESS);
    document.onKeyPress=cr(e);
}

if(window.location.protocol == 'http:')
{
        if(self == top || window.location.host != 'www.maneskinns.de')
        {
//                window.location.href = 'http://www.maneskinns.de';
        }

}