<!--
var	the_window;
var	the_detail_window;

//-------------------------------------------
// ウインドウを画面中央に表示
function openWindow( link, width, height )
{
if( parseInt( navigator.appVersion ) > 3 )
{
var	screen_height = window.screen.availHeight;
var	screen_width  = window.screen.availWidth;
var	left_point    =0;
var	top_point     =0;

//if( the_detail_window == null || the_detail_window.closed )
//{
//	if( link == null )
//{
//link = "about:blank";
//}

the_detail_window = window.open(link,"detail_window","height=" + height + ",width=" + width + ",left=" + left_point + ",top=" + top_point + ",toolbar=no,status=yes,menubar=no,scrollbars,resizable=yes,location=0,directories=0");
//}

the_detail_window.focus();

return true;
}
else
{
return false;
}
}


//-->

