function finquiry(object)
{
	var i;
	var urle;
	var str;
	str="";

	urle=location.pathname+"?WP=P1X2&PARA=[[IIID:" + object.IIID.value +"][ISIS:"

	for(i=0;i<object.elements.length-1;i++)
	{
		if(object.elements[i].checked==true)
		{
			str=str + "," + object.elements[i].value;
		}
	}
	str=str.replace(",","",1);


	urle=urle+str+"]]"
	window.open(urle,"","resizable=yes,width=520,height=300");

}
function inquiryView(object)
{
	var urle;
	urle=location.pathname+"?WP=P1X2&PARA=[[IIID:" + object.IIID.value +"]]"
	window.open(urle,"","resizable=yes,width=520,height=300");
}