var currentid; function image_popup_show(tag_id){ if(tag_id!=currentid){ $('image_popup_'+ tag_id).innerHTML=''; //alert(''); Element.show('image_popup_'+ tag_id); currentid=tag_id; } else { Element.hide('image_popup_'+ tag_id); currentid=''; } } function image_popup_hide(tag_id){ Element.hide('image_popup_'+ tag_id); currentid=''; }