function showesfinge(){
	$('#esf_wrapper').css('display','block');
	$.post('/portal/pages/esfingecontrol.asp',{opcion:'showesfinge'},function(data){
		$('#esf_wrapper').html(data);
	})
}

function ingresaresfinge(){
	$.post('/portal/pages/esfingecontrol.asp',{opcion:'showdat'},function(data){
		$('#esf_wrapper').html(data);
	})
}

function consultaesfinge(){
	$.post('/portal/pages/esfingecontrol.asp',{opcion:'showcat'},function(data){
		$('#esf_wrapper').html(data);
	})
}

function showquestion(id,fondo){
	$.post('/portal/pages/esfingecontrol.asp',{opcion:'showquestion',id:id,fondo:fondo},function(data){
		$('#esf_wrapper').html(data);
		$('#esf_wrapper').css({'background': 'url(/portal/miscelanea/images/esfinge/' + fondo + '.jpg) #000 no-repeat'});
	})
}

function showrespesfinge(id,fondo){
	
	$.post('/portal/pages/esfingecontrol.asp',{opcion:'showresponse',id:id,fondo:fondo},function(data){
		$('#esf_wrapper').html(data);
		$('#esf_wrapper').css({'background': 'url(/portal/miscelanea/images/esfinge/' + fondo + '2.jpg) no-repeat'});
	})
}

function cerraresfinge(){
	$('#esf_wrapper').css('display','none');
}

$(document).ready(function(){if($('#esf_wrapper')){showesfinge();}});