<!--
function setIndex(mode)
{
	var cnt = 0;
	for(i = 0; i < document.prForm.length ; i++)
	{
		if(document.prForm[i].checked == true)
			cnt++;
	}
	if(cnt < 1)
	{
		alert("ÇÑ°³ÀÌ»ó ¼±ÅÃÇØ¾ß ÇÕ´Ï´Ù.");
		return;
	}
	if(confirm("Á¤¸» º¯°æÇÏ½Ã°Ú½À´Ï±î?"))
	{
		document.prForm.modes.value = mode;
		document.prForm.action = "/admin/codes/action.php";
		document.prForm.submit();
	}
}

function copyIndex()
{
	var cnt = 0;
	var copyIndexes = "";

	for(i = 0; i < document.prForm.length; i++)
	{
		if (document.prForm.elements[i].type == 'checkbox')
		{
			if (document.prForm.elements[i].checked == true)
			{
				copyIndexes += document.prForm.elements[i].value + "^";
				cnt++;				
			}
		}
	}

	if(cnt < 1)
	{
		alert("ÇÑ°³ÀÌ»ó ¼±ÅÃÇØ¾ß ÇÕ´Ï´Ù.");
		return;
	} else {
		copyIndexes = copyIndexes.substring(0, copyIndexes.lastIndexOf("^"));
		//alert(copyIndexes);
		var url = "/admin/productcopy.html?num=" + copyIndexes;
		//alert(url);
		window.open(url, "cpPR", "width=550,height=200");
	}
}
-->