////////////////////////////////////////////////////////////////////////////////
// admin.js
// 

	// -- Options -------------------------------------------------------------
	function addOptionValue()
	{
		var insertPoint = document.getElementById( "option_value_insert" );
		var template = document.getElementById( "option_value_template" );
		var newRow = template.cloneNode(true);
			insertPoint.parentNode.appendChild( newRow );
	}
	function removeOptionValue( obj )
	{
		if( confirm( "Are you sure you want to remove this Option Value?" ) )
		{
			// Existing?
			if( obj.name.indexOf( "existing" ) != -1 )
			{
				var parts = obj.name.split( "_" );
				var doAjax = new Ajax('~ajax.php?removeOptionValue&item_id='+ parts[1] +'&option_id='+ parts[2] +'&option_value_id='+ parts[3], {method: 'get'}).request();
			}
			var remove = obj.parentNode.parentNode;
				remove.parentNode.removeChild( remove );
		}
	}
	// ------------------------------------------------------------------------
	
//
//
////////////////////////////////////////////////////////////////////////////////
