
function displayPhoto(section, pkey, varoptional){
	wphoto = window.open( "/_media/photo/?v=" + section +"&i=" + pkey , "wphoto", "left=50,top=20,width=570,height=500,status=yes,toolbar=no,menubar=no,location=no", true);
	wphoto.focus();
}

/*	_____________________________________________________________________________________________ //
##	
*/
function voidfile(section, item){
	wfile = window.open( "/_media/files/?v=" + section + "&i=" + item, "wfile", "left=190,top=50,height=250,width=400,status=yes,toolbar=no,menubar=no,location=no", true);
	wfile.focus();
}//end function voidfile



function MapaGminyElk(){
	
	var h = Math.floor(screen.availHeight * 0.9);
	var w = Math.floor(h * 1.33);
	var l = Math.floor((screen.availWidth - w) / 2);
	var t = Math.floor((screen.availHeight - h) * 0.3);
	
	var param = "left="+l+",top="+t+",height="+h+",width="+w+",status=yes,toolbar=no,menubar=no,location=no,scrollbars=no";
	mapa = window.open("/mapa.html?w=" + w + "&h=" + h, "mapa", param, false);
	mapa.focus();
	
}