function switch_img(img, obj){
	document.getElementById(obj.id).src=img.src;
}

function redirect(URL){
	var Page="";
	document.location=URL+".asp";
}

function popup(URL, larghezza, altezza)
{
	var popup1;
	larg = larghezza + 30;
	alt = altezza + 60;
	popup1=window.open("", "foto", "width=150, height=150, resizable, top=20, left=100");
	popup1.document.open();
	popup1.document.write("<head><title>.:Photos:.</title></head><body><center><img name='foto' src='")
	popup1.document.write(URL)
	popup1.document.write("' border='0'><br>")
	popup1.document.write("<font face='verdana' size='1'><a href='#' onclick='javascript:window.close()'>chiudi</a></font></center></body>")
	popup1.resizeTo(larg, alt);
	popup1.focus();
	return false;
}