  function SetPic(pic, caption, type)
  {
  	var e= document.getElementById('figure');
  	if (e){
		if (type == 0) {
	  		e.innerHTML= "<p><img class=\"scaled\" src=\""+pic+"\" name=\"PictureBox\" alt=\""+caption+"\"> <br><a> "+caption+" </a>";}
		if (type == 1) {
	  		e.innerHTML= "<p><img class=\"long\" src=\""+pic+"\" name=\"PictureBox\" alt=\""+caption+"\"> <br><a> "+caption+" </a>";}
	}
  }


