
function nbrowser(){
 version = "n0";
 bName = navigator.appName;
 bVersion = navigator.appVersion;

 if (bName != "Netscape") { version = "n0"; }
 else if (bVersion.indexOf("Safari")>=0) { version = "n0"; }
   else { version = "n1"; }; 
 
 }
    
function show(p){
pic='images/p'+p+'.jpg';
win=window.open("","","height=600, width=780")
win.document.write("<head><title>Manchester Fuchsia Society - Show Photographs</title></head>"
+"<body bgcolor='#D5EAFF'>"
+"<center><img id='ph1' height='480' width='640' src='images/spacer.gif'>"
+"<form>"
+"<input type='button' name='b' value='Close window' onclick='self.close()'>"
+"</form>"
+"</body>");

 if (version != "n1")  
      win.ph1.src= pic;
   else  
      win.document.ph1.src= pic; 
      
  
 }


function showv(p){
pic='images/p'+p+'.jpg';
win=window.open("","","height=600, width=780")
win.document.write("<head><title>Manchester Fuchsia Society - Show Photographs</title></head>"
+"<body bgcolor='#D5EAFF'>"
+"<center><img id='ph1' height='480' width='360' src='images/spacer.gif'>"
+"<form>"
+"<input type='button' name='b' value='Close window' onclick='self.close()'>"
+"</form>"
+"</body>");


 if (version != "n1")
      win.ph1.src= pic;
    else  
      win.document.ph1.src= pic;
}


function cursoron(){
    window.event.srcElement.style.cursor="hand";
}


