


function conDel ( id )
{
	if ( confirm ( "Are you sure you wish to delete this item?" ) )
	{
		return true;
	}
	else
	{
		return false;
	}
}


function openPopup ( url )
{
	window.open ( url, 'popup', 'width=640,height=500,menubar=no,resizable=no,toolbar=no,scrollbars=yes' );

}