function show_modalbox(data,template){ //TEST IE6 var reg = new RegExp("(MSIE 6)","gi"); var ie6 = false; if (reg.test(navigator.userAgent)) { ie6 = true; } if(ie6) { function viewResponse(response){ my$("modal").innerHTML = response.responseText; if(template == 'sendFriend') my$("modal").style.width = '500px'; else my$("modal").style.width = '550px'; my$("modal").style.visibility = "visible"; my$("f_modal").style.visibility = "visible"; var pos = $("html").scrollTop() + 300; my$("modal").style.top = pos + 'px'; } RequestAjax.getAjax("/websvc/modalbox.ws.php?template="+template+data+"&nocache="+Math.random(),viewResponse); } else { $.fancybox.open({ 'href' : "/websvc/modalbox.ws.php?template="+template+data+"&nocache="+Math.random(), 'autoScale' : true, 'closeBtn' : false, 'type' : 'ajax', 'padding' : 0, 'scrolling' : 'no', 'minWidth' : 550 }); } } function close_modalbox(){ //TEST IE6 var reg = new RegExp("(MSIE 6)","gi"); var ie6 = false; if (reg.test(navigator.userAgent)) { ie6 = true; } if(ie6) { my$("modal").style.visibility = "hidden"; my$("f_modal").style.visibility = "hidden"; removeEvent(my$("f_modal"),'click',close_modalbox); } else { $.fancybox.close(); } }