function clear_area(a){
if(a.blur)a.blur();
}

function look_img(imgname,imgw,imgh){
imgwin=window.open("","","width="+eval(imgw+30)+",height="+eval(imgh+30)+",scrollbars=0,resizable=1");
imgwin.document.open();
imgwin.document.write('<html><head>');
imgwin.document.write('<meta http-equiv="content-type" content="text/html;charset=shift_jis">');
imgwin.document.write('<title></title></head>');
imgwin.document.write('<body bgcolor="#ffffff" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">');
imgwin.document.write('<table border="0" cellpadding="0" cellspacing="0" width="100%" height="100%" align="center"><tr><td width="100%" align="center">');
imgwin.document.write('<a href="JavaScript:window.close();"><img src='+imgname+' width='+imgw+' height='+imgh+' border="0" alt="クリックするとウィンドウが閉じます。" title="クリックするとウィンドウが閉じます。"></a>'); 
imgwin.document.write('</td></tr></table></body></html>');
imgwin.document.close();
}
//-->

function reloadNow(){
document.location=document.location;
}
function quit_win(){
window.close();
}

if (document.layers){
window.onResize=reloadNow;
}
