/**
 * @author oscaralderete@gmail.com - http://oscaralderete.com
 */
function iframeOpen(title,src,w,h,t){$('#iframeTitle').html(title);$('#iframeId').attr({src:src,width:w,height:h});$('#iframeContainer').css({width:w,height:h+20});$('#iframe').css({left:($(document).width()-(w+40))/2,top:$(document).scrollTop()+t}).fadeIn(1000,function(){$('#iframeId').css('visibility','visible');});}function iframeClose(){$('#iframeId').css('visibility','hidden').attr('src','');$('#iframe').fadeOut(500,function(){if(typeof(veloBloquear)=='undefined')$('#trans,#velo').hide();else{if(veloBloquear){var x=1;}else{$('#trans,#velo').hide();}}});}$(function(){$('body').append('<div id="iframe"></div>');$('#iframe').css({position:'absolute',border:'solid 20px #eee',width:'auto',height:'auto',top:0,left:0,zIndex:60,background:'#eee',display:'none',overflow:'hidden'}).html('<div id="iframeContainer" style="width:0;height:0;background:#fff"><div id="iframeHeader" style="width:100%;height:20px;overflow:hidden;font:bold 14px Arial,Helvetica,sans-serif;text-align:left;background:#eee"><span id="iframeClose" style="float:right;cursor:pointer"><img src="'+current_host+'images/iframe_cerrar.jpg" alt="CERRAR" title="CERRAR"/></span><span id="iframeTitle"></span></div><iframe id="iframeId" src="" width="0" height="0" frameborder="0" style="visibility:hidden"></frame></div>');$('#iframeClose').click(function(){iframeClose();});});
