function mostrar(w,h,img){
	document.getElementById("mostrar-foto").style.display="block";
	document.getElementById("mostrar-foto").style.width=w+"px";
	document.getElementById("mostrar-foto").style.height=h+"px";
	document.getElementById("mostrar-foto").style.left=((640-w)/2)+"px";
	document.getElementById("img-box").innerHTML="<img src=\"_img_resize/"+w+"/"+img+".jpg\" />";

}

function cerrar(){
	document.getElementById("mostrar-foto").style.display="none";
}


function submitcmt(flag){
	if(flag==1){
		document.getElementById("form-cmt").style.display="none";
		document.getElementById("send-cmt").style.display="block";
	}else{
		document.getElementById("send-cmt").style.display="none";
		document.getElementById("form-cmt").style.display="block";
		document.getElementById("REC_LOC").value="";
		document.getElementById("DIRECT_RETRIEVE_LASTNAME").value="";
	}
}

