	function showpic(imgnev){
		var posx = 0;
		var posy = 0;
		if (!e) var e = window.event;
		if (e.pageX || e.pageY) 	{
			posx = e.pageX;
			posy = e.pageY;
		}
		else if (e.clientX || e.clientY) 	{
			posx = e.clientX + document.body.scrollLeft
				+ document.documentElement.scrollLeft;
			posy = e.clientY + document.body.scrollTop
				+ document.documentElement.scrollTop;
			// posx and posy contain the mouse position relative to the document
			// Do something with this information
		}
		picup.style.top = posy-185;
		picup.style.left = posx-370;

		imgnev2 = imgnev.substring(0,imgnev.length-4)+"3.jpg";

		picimg.src = imgnev2;

		if (picup.style.visibility = "hidden") {
			picup.style.visibility = "visible";
		}
	}

	function hidepic() {
		picup.style.visibility = "hidden";
		picimg.src = "images/noimg.gif";
	}

	function showpic2(imgnev){
		var posx = 0;
		var posy = 0;
		if (!e) var e = window.event;
		if (e.pageX || e.pageY) 	{
			posx = e.pageX;
			posy = e.pageY;
		}
		else if (e.clientX || e.clientY) 	{
			posx = e.clientX + document.body.scrollLeft
				+ document.documentElement.scrollLeft;
			posy = e.clientY + document.body.scrollTop
				+ document.documentElement.scrollTop;
			// posx and posy contain the mouse position relative to the document
			// Do something with this information
		}
		picup.style.top = posy-370;
		picup.style.left = posx-370;

		imgnev2 = imgnev.substring(0,imgnev.length-5)+"3.jpg";

		picimg.src = imgnev2;

		if (picup.style.visibility = "hidden") {
			picup.style.visibility = "visible";
		}
	}

