function borderON(who){
	who.style.borderColor='#275081';
	
	}
function borderOFF(who){
	who.style.borderColor='#1C385B';
	
	}

function setStatus(){
	window.status="click the thumbnail to see the pic";	
	}

function resetStatus(){
	window.status="interferenze 05";
}

function thumb(name){
	filename=thumbsPath+name+".JPG";
	document.write("<a  title=\"click to see the pic\" href=\"#\"><img class=\"standard\" onMouseOut=\"resetStatus();borderOFF(this);return true\" onMouseOver=\"setStatus();borderON(this);return true\" src=\""+filename+"\" onClick=\"pic('"+name+"');return true\"></a>");
}

function thumbV(name){
	filename=thumbsPath+name+".JPG";
	document.write("<a  title=\"click to see the pic\" href=\"#\"><img onMouseOut=\"resetStatus();borderOFF(this);return true\" onMouseOver=\"setStatus();borderON(this);return true\" src=\""+filename+"\" onClick=\"picV('"+name+"');return true\"></a>");
}

function pic(name){
	w = window.open("","w2","height=450,width=600,MenuBar=No,Resize=no");
	filename=picsPath+name+".JPG";
	w.document.writeln("<html><head><title>interferenze 05</title></head><body style='margin:0px;background-color:#0F1F33'><img src=\""+filename+"\"></body></html>");
}

function picV(name){
	w = window.open("","w2","height=800,width=600,MenuBar=No,Resize=no");
	filename=picsPath+name+".JPG";
	w.document.writeln("<html><head><title>interferenze 05</title></head><body style='margin:0px;background-color:#0F1F33'><img src=\""+filename+"\"></body></html>");
}

