<!--
	function launchWin(url,w,h,scroll)
	{
		window.open(url,'openWin',"toolbar=no,width=" + w + ",height=" + h + ",left=100,top=100,status=no,menubar=no,location=no,scrollbars=" + scroll + ",resize=no");
	}

	function confirmDel(item)
	{
		if (confirm("Are you sure you want to delete this " + item + "?"))
		{
			if (confirm("Are you really sure? All records related to this " + item + " will be removed from your web site."))
			{
				return true;
			}
			else
			{
				return false;
			}
		}
		else
		{
			return false;
		}
	}

	function imgToggle(imgName,imgFile)
	{
		if (document.images)
		{
			document[imgName].src = imgFile;
		}
	}

	//verify that combo index is not '0'
	function checkIndex(form)
	{
		if (form.options.categoryID.selectedIndex == 0)
		{
			alert('Please choose a category.');
			return false;
		}
	}
//-->