//------------------------------------------------
//FIleName
//	js_detail.js
//
//Function
//	副作用検索画面のJavaScript
//
//Arge
//	
//
//Return
//	
//
//Version
//	2003/04/28
//-----------------------------------------------
function win_open(strURL){
	var newW;
//	newW = window.open("asp_showImage.asp?qURL="+[strURL],"strURL","scrollbars=yes,resizable=yes,menubar=yes,location=no,dependent=yes");
	newW = window.open(strURL,"strURL","scrollbars=yes,resizable=yes,menubar=yes,location=no,dependent=yes");
	return false;
}

//副作用一覧をみせる  //20030327大村作成
function showSE(code,nameDrug){
	var newWin;
	newWin = window.open("se_list.asp"+"?argeCode="+code+"&argeName="+nameDrug,"se_"+[code],"width=680,height=500,scrollbars=yes,resizable=yes,menubar=yes,location=no");
}
