//function for changing the appearance of the arrow
function changepict(arrname,srcname)
	{
	document.images[arrname].src = srcname;
	}
//function to show big picture in new document
function enlarge_pic(path)
	{
	var win;
	win=window.open();
	win.document.open("text/html");
	win.document.write("<html><head></head><body><img src=pics/"+path+" /></body><html>");
	}
