function goBackGeneric(val)
{
	if(val == '')
	{
		window.history.back(1);	
	}
	else
	{
		document.location.href=val;
	}
}

