function ShowPic(pic)
{
	var str="",w="",h="";
	str="images/" + pic ; 
	var img=null;
	img=new Image;
	img.src=str;
	w=img.width;
	h=img.height;
	window.open("showimage.htm?" + str, "", "left=10,top=10,Scrollbars=yes,width=400,height=400,resizable =yes");
	
}
function ShowPic2(pic)
{
	var str="",w="",h="";
	str="images/" + pic ; 
	var img=null;
	img=new Image;
	img.src=str;
	w=img.width;
	h=img.height;
	window.open("../showimage.htm?" + str, "", "left=10,top=10,Scrollbars=yes,width=400,height=400,resizable =yes");
	
}

