function	fn_miframe_startUp(){$("body").append("<div id='miframe_overlay'></div>");$("body").append("<div id='miframe_Wrapper'></div>");$("#miframe_Wrapper").prepend("<a href='javascript:fn_miframe_Close();' title='閉じる' id='miframe_close'>close</a>");$("#miframe_Wrapper").append("<div id='miframe_Contents'></div>");$("#miframe_Wrapper").height($(window).height()-8 );fn_miframe_Close();var v_class="a.miframe";$(v_class).click(function(){fn_miframe_Show(this.href);return	false;});$(v_class).dblclick(function(){fn_miframe_Show(this.href);return	false;});}
function	fn_miframe_Show( p_url ){$("#miframe_overlay").css("display","block");var	v_Tags="<iframe id='miframe_iframe' src='"+p_url+"' scrolling='auto' frameborder='0'></iframe>";$("#miframe_Contents").append(v_Tags);if($("#miframe_Wrapper").css("height")>($("#miframe_Contents").css("height")+100)){v_Tags=$("#miframe_Wrapper").css("height")-32;$("#miframe_Contents").height($("#miframe_Wrapper").height()-32);$("#miframe_iframe").height($("#miframe_Wrapper").height()-32);}$("#miframe_Wrapper").css("display","block");}
function	fn_miframe_Close(){$("#miframe_Wrapper").css("display","none");$("#miframe_Contents").empty();$("#miframe_overlay").css("display","none");}