function miniaturas(valor){
	var xmlHttp;
		try {
		// Firefox, Opera 8.0+, Safari
			xmlHttp=new XMLHttpRequest();
		} 
		catch (e) {
		// Internet Explorer
			try {
				xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
			}
			catch (e) {
				try {
					xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
				}
				catch (e) {
					alert("Seu navegador não suporta AJAX!");
					return false;
				}
			}
		}
		xmlHttp.onreadystatechange=function() {
			if (xmlHttp.readyState != 4) {
				document.getElementById('show_minifotos').innerHTML = '<table width=100% height=100% border=0 cellpadding=0 cellspacing=0><tr><td align=center><img src=imagens/carregando.gif></td></tr></table>';
			}
			else if (xmlHttp.readyState==4) {
				document.getElementById('show_minifotos').innerHTML = xmlHttp.responseText;
			}
		}
	xmlHttp.open("GET",'showminifotos.php?cod_pasta='+valor,true);
	xmlHttp.send(null);
}


function showfoto(valor){
	var xmlHttp;
		try {
		// Firefox, Opera 8.0+, Safari
			xmlHttp=new XMLHttpRequest();
		} 
		catch (e) {
		// Internet Explorer
			try {
				xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
			}
			catch (e) {
				try {
					xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
				}
				catch (e) {
					alert("Seu navegador não suporta AJAX!");
					return false;
				}
			}
		}
		xmlHttp.onreadystatechange=function() {
			if (xmlHttp.readyState != 4) {
				document.getElementById('showfoto').innerHTML = '<table width=100% height=100% border=0 cellpadding=0 cellspacing=0><tr><td align=center><img src=imagens/carregando.gif></td></tr></table>';
			}
			else if (xmlHttp.readyState==4) {
				document.getElementById('showfoto').style.display = '';
				document.getElementById('showfoto').innerHTML = xmlHttp.responseText;
			}
		}
	xmlHttp.open("GET",'showfoto.php?cod_foto='+valor,true);
	xmlHttp.send(null);
}