/***************************************************************************************/
//　タイトル    ：Sawai Medical Site TOPページ 製品詳細画面用JS
//　ファイル名  ：prod_search.js
//　作成日　　　：2008/02/12	hyoutan-ishi　新規作成
//　変更履歴　　：2009/05/20	mashino　添付ファイルワード化対応
//　概要　　　　：
//　備考　　　　：
//　　　　　　　：utf-8
/***************************************************************************************/

//====================================================================
// 製品画像ウィンドウ表示
//====================================================================
function PhotoWinOpen(img1,img2,img3,img4,pr){
	url = "./php/index/sld_photo.php?img1=" + img1 + "&img2=" + img2 + "&img3=" + img3 + "&img4=" + img4 + "&arg=" + pr;
	ret = window.open(url,'_blank','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=400,height=450');
}

//====================================================================
// 画像保存ダイアログ表示
//====================================================================
function DownloadFile(img,prodnm) {
	prodnm = encodeURIComponent(prodnm);

	var ob = document.getElementById(img);
	top.location = "./php/index/download.php?download_target=" + img + "$$" + ob.getAttribute("value") + "$$" + prodnm;
}

//20090520 添付ファイルワード化対応
//====================================================================
// ワードウィンドウ表示
//====================================================================
function docOpen(file) {
	alert('添付資料は「Windows」及び「MS Office」のバージョンにより\nレイアウトが崩れる可能性がございますが、あらかじめご了承下さい。');
	newWindow = window.open(file,"_blank");
	newWindow.focus();
}

