function popup(url)
{
	window.open(url,'tdwin','width=620,height=550,resizable=no,scrollbars=no,toolbar=no,location=no,directories=no,status=no,menubar=no,copyhistory=no');
}

function verifyCat(catname)
{
	var choice = confirm('Are you sure you want to create a category named \"' + catname + '\"?');
	
	if(choice)	//choice == true
		return true;

	else		//choice == false
		return false;
}

function verify(cat, id)
{
	if(confirm('Delete the "' + cat + '" category?'))
	{
		window.location = '/admin/editcat.php?axn=del&id=' + id;
	}
	else
		return;
}