﻿$(document).ready(function() {










    $(".lightBoxMeytel").click(function() {
       
        var hRef = $(this).attr("href");
        var width = $(this).attr("name");
        var height = $(this).attr("rel");

        $(".lightBoxInner").show();
        $(".lightBoxContent").html('<iframe id="mylightbox" width=' + width + ' height=' + height + ' src=' + hRef + ' frameborder=0></iframe>');
        $(".lightBoxInner").css('width', document.body.clientWidth);
        $(".lightBoxInner").css('height', document.body.clientHeight);
        $(".lightBoxContent").css('left', (document.body.clientWidth / 2) - (width / 2));
        $(".lightBoxContent").css('top','5%');
        return false;
    });


	$("#lightBoxMeytelclose").click(function() {

		var padre = $(window.parent.document);
		$(padre).find(".lightBoxInner").hide();
		$(padre).find(".lightBoxContent").html('');
		

        return false;
    });




});

function resize()
{
 
    var padre = $(window.parent.document);
	
		$(padre).find("iframe").attr('width', 540+'px');
		$(padre).find("iframe").attr('height', 350+'px');
		   
	
        
		

        return false;
}

function CloseOnReload()
{
        alert("El registro se ha efectuado correctamente. En breves momentos recibirá un correo electrónico.");
        var padre = $(window.parent.document);
		$(padre).find(".lightBoxInner").hide();
		$(padre).find(".lightBoxContent").html('');
		

        return false;
}





