$(document).ready(function () {

 //Funcion para el login del portal
 $('#myLogIn').click(function() {
     $.blockUI( { 
      message: "<iframe src='/register/' frameborder='0' width='325px' height='220' scrolling='no'></iframe>" ,
      css: { 
       width:          '345px',       	
       top:  ($(window).height() - 200) /2 + 'px', 
       left: ($(window).width() - 400) /2 + 'px',
       border:         '0px',
       backgroundColor: '#f3f1f1', 
      },
    overlayCSS:  { 
        backgroundColor: '#000', 
        opacity:         0.6 
    }, 
     
     });
     $('.blockOverlay').attr('title','Clic para cerrar').click($.unblockUI);
 });

 $('#myLogOut').click(function() {
  //alert('Handler for .click() called.');
 });
});

