function Confirm(text)
{
	if( confirm ("Are you sure you want to "+text+" this file?"))
	{
		return true;
	}
	else
	{
		return false;
	}
} 