
function ItemInCart(item, row, key)
{
	if (key == null)	// There is no key, pass it the item.
		key = item;
		
	if (row == null)	// There is no row, notify the programmer.
		alert('Missing Row for Item ' + item);
		
	document.write('' +
	'<nobr><FORM METHOD=POST ACTION="http://www.laseredmemories.com/cgi-bin/store/commerce.cgi">' +
	'<nobr><INPUT TYPE="hidden" value="' + key + '" NAME="keywords" SIZE="15" MAXLENGTH="60">' +
	'<nobr><A HREF="javascript:document.forms[' + row + '].submit();">' + item + '</A>' +
	'<nobr></FORM>');
}

