	var MyWin;
	function ShowImage(id)
	{
		if(MyWin!=null)
		{
			MyWin.close;
			MyWin=null;
		}
		
		MyWin=window.open("/ShowImage.html?file=" + id,null,"height=495,width=640,status=no,toolbar=no,menubar=no,location=no,titlebar=no,resizable=no");
		MyWin.resizeTo(648,552);
		MyWin.moveTo(5,5);
		MyWin.focus();	
	}
	
	function ShowImage2(id,width,height)
	{
		if(MyWin!=null)
		{
			MyWin.close;
			MyWin=null;
		}
		
		height+=103;
		width+=50;
		MyWin=window.open("/ShowImage.html?file=" + id,null,"height="+ height + ",width=" + width + ",status=no,toolbar=no,menubar=no,location=no,titlebar=no,resizable=no");
		MyWin.resizeTo(width,height);
		MyWin.moveTo(5,5);
		MyWin.focus();	
	}
