////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// PopUpWindow
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// 
function Portafolio(){
	Objeto=(document.all)?document.all['Portafolio']:document.getElementById('Portafolio');	
	Objeto.style.display='';
	//return false
};
function OcultarPortafolio(){
	Objeto=(document.all)?document.all['Portafolio']:document.getElementById('Portafolio');	
	Objeto.style.display='none';
	//return false
};
function Contacto(){
	PopUpWindow("data_temp/contacto.php",400,400);
};

function PopUpWindow(URL,Ancho,Alto) {
	Izquierda = (screen.width-Ancho)/2;
	Arriba= (screen.height-Alto)/2; 
	ventana = window.open(URL, "", 'width='+Ancho+',height='+Alto+',left='+Izquierda+',top='+Arriba+',fullscreen=no,toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=0,scrolling=0,scrollbars=0');
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// MOSTRAR O ESCONDER ELEMENTOS
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function MostrarEsconder(Cual,Link){
	Objeto=(document.all)?document.all["Detalles_"+Cual]:document.getElementById("Detalles_"+Cual);	
	Objeto.style.display=(Objeto.style.display == '')?'none':'';
	//
	Html = Link.innerHTML;
	NewHtml = (Objeto.style.display == '')?Html.replace('open',"close"):Html.replace('close',"open");
	Link.innerHTML = NewHtml;
	NewTitle = (Objeto.style.display == '')?'Ocultar Detalles':'Mostrar Detalles';
	Link.setAttribute('title',NewTitle);
	return false
}
