    function setMpic(project, imagenumber, orientation, title, description){
	   
	   var html = "<a href=\"#\" onclick=\"show(\'Lpicdivparent\'); setLpic(\'"+project+"\', \'"+imagenumber+"\');\"><img class=\""+orientation+"\" title=\"magnify\" alt=\"zoom\" src=\"images/"+project+"/"+project+"_"+imagenumber+"_m.jpg\" /></a><br/><br/><b>"+title+"</b> &nbsp;"+description;
	   
	   if (document.layers) {
    		document.layers['Mpicdiv'].innerHTML = html;
   		} 
		else if (document.all) {
    		document.all['Mpicdiv'].innerHTML = html;
   		} 
		else if (document.getElementById) {
    		document.getElementById('Mpicdiv').innerHTML = 	html;
   		}
    }
	
	function setLpic(project, imagenumber){
	
		var html = "<img class=\"full\" title=\"close\" alt=\"close\" src=\"images/"+project+"/"+project+"_"+imagenumber+"_l.jpg\" />";
		
	   if (document.layers) {
    		document.layers['Lpicdiv'].innerHTML = 	html;
   		} 
		else if (document.all) {
    		document.all['Lpicdiv'].innerHTML = html;
   		} 
		else if (document.getElementById) {
    		document.getElementById('Lpicdiv').innerHTML = 	html;
   		}
    }
