function pic(bildpos, neubild)
{	
var bildname = "grossebilder/" + neubild+"dirkpetzold.jpg"
parent.foto.document.bild.src=bildname 
}
function click(evt) {
 if (navigator.appName.indexOf("Microsoft") != -1){
 if (event.button==2) {
 Check = confirm("Reload?");
 if(Check == true) location.reload();
 return false
 };
 };
 if (navigator.appName.indexOf("Netscape") != -1) {
 if ( evt.which == 3 ) {
 return false
 };
 };
 };
 if (navigator.appName.indexOf("Netscape") != -1) {
 document.captureEvents( Event.MOUSEDOWN )
 };
 document.onmousedown = click;

