function displayWindow(newWindow,width,height)
{
	window.open(newWindow,null,"height=" + height + ",width=" + width + ",status=yes,toolbar=no,menubar=no,location=no");
}

function confirmation()
{
	alert("Are you sure you want to delete this item?");
}

function switchText(object, baseText, eventName)
{
	if (eventName == "blur")
	{
		if (object.value == "")
		{
			object.value = baseText;
		}
	}
	else
	{
		if (object.value == baseText)
		{
			object.value = "";
		}
	}
}




