// JavaScript Document
function go_to(url){
	document.location.href=url;
}

function nvj_flotante(url,tit,op){
	window.open(url,tit,op);
}

function nvj_ver_foto(id,path){
	
	url=path+"/flo_foto.php?id="+id;
	op="scrollbars='NO',width=500,height=500";	
	tit="Potosi_de_noche";
	nvj_flotante(url,tit,op)
}