// ESTE CODIGO REQUIERE jQuery
jQuery(document).ready(function() {

	//select all the a tag with name equal to modal
	jQuery('a[name=tx_acnurmodalwjquery_pi1_modal]').click(function(e) {
		//Cancel the link behavior
		e.preventDefault();
		//Get the A tag
		id = jQuery(this).attr('href');
		
		jQuery('#tx_acnurmodalwjquery_pi1_title').html( jQuery(this).attr('title') );
		
		//Get the screen height and width
		maskHeight = jQuery(document).height();
		maskWidth = jQuery(window).width();
	
		//Set height and width to mask to fill up the whole screen
		jQuery('#tx_acnurmodalwjquery_pi1_mask').css({'width':maskWidth,'height':maskHeight});
		
		//transition effect		
		jQuery('#tx_acnurmodalwjquery_pi1_mask').fadeIn(1000);	
		jQuery('#tx_acnurmodalwjquery_pi1_mask').fadeTo("slow",0.8);	
	
		//Get the window height and width
		winH = jQuery(window).height();
		winW = jQuery(window).width();
              
		//Set the popup window to center
//		jQuery(id).css('top',  winH/2-jQuery(id).height()/2);
		jQuery(id).css('top', 20);
		jQuery(id).css('left', winW/2-jQuery(id).width()/2);
	
		//transition effect
		jQuery(id).fadeIn(2000); 
	
	});
	
	//if close button is clicked
	jQuery('.tx_acnurmodalwjquery_pi1_window .tx_acnurmodalwjquery_pi1_close').click(function (e) {
		//Cancel the link behavior
		e.preventDefault();
		jQuery("#tx_acnurmodalwjquery_pi1_contenido").html( '<div id="loading_message" class="loadingMessage" style="display:block;"></div>' );
		jQuery('#tx_acnurmodalwjquery_pi1_mask, #tx_acnurmodalwjquery_pi1_dialog').hide();
	});		
	
	//if mask is clicked
	jQuery('#tx_acnurmodalwjquery_pi1_mask').click(function () {
		jQuery(this).hide();
		jQuery("#tx_acnurmodalwjquery_pi1_contenido").html( '' );
		jQuery('#tx_acnurmodalwjquery_pi1_dialog').hide();
	});			
	
});
