<!--
//--------------------------------
// show_tiff（tiffファイルの表示）
//--------------------------------
function show_tiff(hno)
{
	var tiffwin;
	var strarg;
	var option;
	var height = "600";
	var width  = "800";

	strarg = "/suisen/scripts/tiff_popup2.asp?hno=" + escape(hno)
		+ "&id="   + escape("");
	option = "height=" + height
		 + ",width=" + width
		 + ",status=no"
		 + ",menubar=no"
		 + ",resizable=yes"
		 + ",scrollbars=yes";
	tiffwin = window.open(strarg, "tiff_win", option);
	tiffwin.focus();
}
function local_show_tiff(hno)
{
	var tiffwin;
	var strarg;
	var option;
	var height = "600";
	var width  = "800";

	strarg = "/suisen/scripts/tiff_popup3.asp?hno=" + escape(hno)
		+ "&id="   + escape("");
	option = "height=" + height
		 + ",width=" + width
		 + ",status=no"
		 + ",menubar=no"
		 + ",resizable=yes"
		 + ",scrollbars=yes";
	tiffwin = window.open(strarg, "tiff_win", option);
	tiffwin.focus();
}

//-- 部品検索最新分解図表示機能追加　2009/11/19 y.yasuda　add start
//--------------------------------
// show_zumen（COM-ET版検索王の表示）
//--------------------------------
function show_zumen(hno,url)
{
    var tiffwin;
    var strarg;
    var option;
    var height = "600";
    var width  = "800";

    //COM-ET版検索王
     strarg = url + "?"
         + "searchStr=" + escape(hno)
         + "&isImg=1"
         + "&isHaiban=1"
         + "&whereFrom=1";
    option = "height=" + height
         + ",width=" + width
         + ",status=no"
         + ",menubar=no"
         + ",resizable=yes"
         + ",scrollbars=yes";
    tiffwin = window.open(strarg, "tiff_win", option);
    tiffwin.focus();
}
//-- 部品検索最新分解図表示機能追加　2009/11/19 y.yasuda　add end
//-->
