function remove_delay(A){getEl("mag_glass").removeChild(getEl("mag_delay"))}function magnify_move(D){if(!D){D=window.event}var C=getElementPos("flower");var A=getEventPos(D).sub(C);A.clip(0,0,300,514);var E=getEl("magnify");var B=getEl("mag_flower");E.style.left=(A.x+C.x-81)+"px";E.style.top=(A.y+C.y-81)+"px";B.style.left=(71-A.x*3)+"px";B.style.top=(71-A.y*3)+"px"}function magnify_off(A){if(!A){A=window.event}document.onmousemove=null;getEl("mag_frame").onmouseout=null;getEl("magnify").style.display="none"}function magnify_on(A){if(!A){A=window.event}document.onmousemove=magnify_move;getEl("mag_frame").onmouseout=magnify_off;magnify_move(A);getEl("magnify").style.display="block"}function magnify_load(B){if(!B){B=window.event}var A=getEl("flower");A.onclick=magnify_on;var C=new Image();C.onload=remove_delay;C.src=mag_img_filename;getEl("mag_flower").src=C.src;C=null;magnify_on(B)}function magnify_init(){var A=getEl("flower");var B=getEl("magnify");A.onclick=magnify_load;B.onclick=magnify_off;if(navigator.userAgent.indexOf(" Firefox/")>=0){A.style.cursor="-moz-zoom-in"}else{if(navigator.platform.indexOf("Win")>=0){A.style.cursor="url(/images/zoom_in.cur), pointer"}else{if(navigator.platform.indexOf("Mac")>=0){A.style.cursor="pointer"}else{A.style.cursor="url(/images/zoom_in.gif), pointer"}}}B.style.cursor="crosshair";A.setAttribute("title",flower_title)}