
var SimpleModal={open:function(url,height,width){if(!window.SimpleModal.isController){if(typeof window.top.SimpleModal!=='object'){alert('Simple modals need the JavaScript available in the top window.');}else{window.top.SimpleModal.open(url,height,width);}return;}var mask=document.createElement('div'),eDiv=document.createElement('div');$(document.body).append(mask).append(eDiv);$(mask).addClass('_simpleModalMask').css({'position':'absolute','top':'0px','left':'0px','width':$(document).width()+'px','height':$(document).height()+'px','margin':'0px','padding':'0px','background-color':'#FFFFFF','opacity':0.8});$(eDiv).addClass('_simpleModal').css({'height':height+'px','width':width+'px','padding':'0px','margin':'0px','border':'1px solid #ccc','position':'absolute','background-color':'#FFF','left':(($(window).width()/2)-(width/2))+$(document).scrollLeft()+'px','top':(($(window).height()/2)-(height/2))+$(document).scrollTop()+'px'}).append("<iframe frameborder='0' scrolling='no'></iframe>");$('iframe:first',eDiv).attr('src',url).css({'height':'100%','width':'100%','background-color':'#FFF','border':'none','overflow':'hidden'});$(window.top).scroll(function(){$('div._simpleModal').css({'left':(($(window).width()/2)-(width/2))+$(document).scrollLeft()+'px','top':(($(window).height()/2)-(height/2))+$(document).scrollTop()+'px'});});},close:function(){$('div._simpleModalMask:last',window.top.document).remove();$('div._simpleModal:last',window.top.document).remove();},isController:false};if(typeof window.top.SimpleModal==='object'){window.top.SimpleModal.isController=true;}