function logoff()
{
	ht_1 = document.getElementsByTagName("body");		
	
	ht_1[0].style.filter = "progid:DXImageTransform.Microsoft.BasicImage(grayscale=1, xray=0, mirror=0, invert=0, opacity=.65, rotation=0)";

	if(confirm("Are you sure you want to log out?"))
	{
		return true;
	}
	else
	{
		ht_1[0].style.filter = "";
		return false;
		event.returnValue=false;
	}
}

function del_article(index,returnPath)
{
	if(confirm("Please confirm delete:"))
	{
		location.href = returnPath+"-update.asp?delete="+index;
	}
	else
	{	
		//do nothing
	}
}

function deactivate_article(index,returnPath)
{
		location.href = returnPath+"-update.asp?deactivate="+index;
}

function activate_article(index,returnPath)
{

		location.href = returnPath+"-update.asp?activate="+index;
}

function getStockists(){
	document.frmStockists.submit();
}