//Javascripts for Priceless Design
//designed by Sarah B. Morley

function popup(mylink, windowname, width, height)
{
	if (! window.focus)return true;
		var href;
	if (typeof(mylink) == 'string')
	   href=mylink;
	else
	   href=mylink.href;
	window.open(href, windowname, 'width=' + width + ',height=' + height + ',scrollbars=yes');
	return false;
}

function makesure()
{
	if (confirm('Are you sure you want to delete this category? It\'s not empty! You\'ll lose stuff!'))
	{
    	return true;
	}
	else
	{
		return false;
	}
}
