// JavaScript Document
      $(document).ready(function() {
								 
								 
        //$('#contenidomedallero').hide();   
		   // toggles the slickbox on clicking the noted link 
		   
			$('a#togglemedallero').click(function() {
			  $('#contenidomedallero').slideToggle("slow");
			  return false;
			});
			
			$('a#toggleaudios').click(function() {
			  $('#contenidoaudios').slideToggle("slow");
			  return false;
			});
				
      });
	  
	  function MM_goToURL() { //v3.0
  var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}

///////////////////////////////////////////
///////////////////////////////////////////
//
// FUNCION QUE ME ABRE POPOUPS CENTRADOS
//
function abrirventana(windowWidth, windowHeight, windowName, windowUri)
{
    var centerWidth = (window.screen.width - windowWidth) / 2;
    var centerHeight = (window.screen.height - windowHeight) / 2;

    newWindow = window.open(windowUri, windowName, 'resizable=0,width=' + windowWidth + 
        ',height=' + windowHeight + 
        ',left=' + centerWidth + 
        ',top=' + centerHeight);

    newWindow.focus();
    return newWindow.name;
}

