<!--

function openWin(value,wval,hval)

{window.open(value, 'popup','resizable=yes,width=640,height=640,status=no,location=no,toolbar=no,menubar=no,scrollbars=yes');}







function img_rclick(e){
var jetzt = new Date();
var Jahr = jetzt.getFullYear();

var msg="Copyright © 2004-" + Jahr + ", Oliver Weber - olicito.de";

var b = navigator.appName.substring(0,9);

if (b=='Netscape' && e.which==3)

alert(msg);

else if (b == 'Microsoft' && event.button==2)

alert(msg);

else return true;

return false;

}



function protectimages(){

var b=navigator.appName.substring(0,9);

document.onmousedown = null;

if (b=="Microsoft")

document.onkeydown = null;

else if (b=="Netscape")

document.releaseEvents (Event.MOUSEDOWN);

if(document.images)

for(i=0;i<document.images.length;i++){

document.images[i].onmousedown = img_rclick;

document.images[i].onmouseup = img_rclick;

}}



document.onmousedown=img_rclick;














