function popImage(menu, pic)
{
	shadowadjust();
	var imgwidth = window.parent.document.getElementById(pic).width;

	window.parent.document.getElementById("wrapper2").style.width=imgwidth+"px";;
	window.parent.document.getElementById("shadow").style.visibility="visible";
	window.parent.document.getElementById(pic).style.visibility="visible";
	document.getElementById(menu).style.borderColor="black";
	}
	function unpopImage(menu, pic)
	{
	window.parent.document.getElementById("shadow").style.visibility="hidden";
	window.parent.document.getElementById(pic).style.visibility="hidden";
	window.portcontent.document.getElementById(menu).style.borderColor="white";
}