function openBild(p,w,h)
{
	window.open(p,'Bild'+Math.round(0x7FFFFFFF*Math.random()).toString(),'width='+w+', height='+h+',menubar=no,toolbar=no,location=no,scrollbars=no,resizable=no,status=no');
}

function openWindow(p,w,h)
{
	window.open(p,'thewindow'+Math.round(0x7FFFFFFF*Math.random()).toString(),'width='+w+', height='+h+',menubar=no,toolbar=no,location=no,scrollbars=no,resizable=no,status=no');
}

function newImage(arg)
{
	rslt = new Image();
	rslt.src = arg;
}

function changeImages()
{
	for (var i=0; i<changeImages.arguments.length; i+=2) document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
}

function click() { 
    if(event.button == 2) { 
        alert('Copyright:\nwww.foto-strametz.at'); 
    } 
     
    if(event.button == 3) { 
        alert('Copyright:\nwww.foto-strametz.at'); 
    } 
}     
document.onmousedown = click; 

