function showFullPic(el){  timg = document.createElement("img");  timg.src = el.src;  timg.setAttribute("id","largepic");  el.parentNode.appendChild(timg);}function RemovePic(el){	timg = document.getElementById("largepic");    el.parentNode.removeChild(timg);}


