/***********************************************************
* Wiccle Content Management System v1.0.0
* -----------------------------
* Wiccle Limited & Keith Killilea
* Copyright Wiccle Limited 2008-2011. All Rights Reserved.
*
* http://www.wiccle.com/
* Email: info@wiccle.com
* Time: 2011-26-10 | File version: 1.0.0
*
* Please read the Wiccle license 
* Available at docs/license.txt
***********************************************************/




/* Form and editor add-ons - some not in use */


function addCategory(thisElement)
{
	var catNum = document.getElementById(thisElement).options.length;

	var newCat = prompt('Name your new category:');
	var newCatIdent = "new__"+newCat;

	if (newCat.length > 0)
	{
		var newOption = new Option(newCat, newCatIdent, false, true)

		document.getElementById(thisElement).options[catNum] = newOption;

		alert("Category has been added and will be saved once you save or publish.");
	}
	else {
		alert("Category name must be at least one character long!");
	}

}




function confirmDeleteUnit(unitId)
{
	var confirmDelete = prompt('Are you sure you wish to delete this box?');

	if (confirmDelete === TRUE)
	{
		alert ('Deleting ' + unitId + ' in [[SHOW_HANDLE]]');
		return true;
	}
	else
	{
		return false;
	}
}



function confirmAction(message)
{	
	var userReply = confirm(message);
	
	if (userReply === true)
	{
		return true;
	}
	else
	{
		return false;
	}
}


