//########################################################
//##													##
//##	       Autor: DM Tecnologia de Informacao	    ##
//##													##
//##				Funcao Para Mostrar a Foto	        ##
//##													##
//##	 		    	num mesmo local         		##
//########################################################
var req;
function loadXMLDoc5(url,valor5){
	req = null; 
	if (window.XMLHttpRequest){ 
		req = new XMLHttpRequest(); 
		req.onreadystatechange = processReqChange5; 
		req.open("GET", url+'?id_fotos='+valor5, true); 
		req.send(null);
	} else if (window.ActiveXObject){ 
				req = new ActiveXObject("Microsoft.XMLHTTP"); 
				if (req){ 
					req.onreadystatechange = processReqChange5; 
					req.open("GET", url+'?id_fotos='+valor5, true); 
					req.send();
				}
		}
}

function processReqChange5(){
	if(req.readyState == 4){
		if (req.status == 200){
			document.getElementById('foto').innerHTML = req.responseText;
		} else{ 
			alert("Houve um problema ao obter os dados:\n" + req.statusText);
		}
	}
}


function upFoto(valor5){
		document.getElementById('foto').innerHTML = "lendo...";
		loadXMLDoc5("includes/mostra_fotos.php",valor5);
}

