function fnSetSelection(value,selectName)
{
	obj = document.getElementById(selectName)
	
	for (var i=0; i<obj.options.length; i++) 
	{
		if (value == obj.options[i].value)
		{
			obj.options[i].selected = true;
		}
	}

}

function fnGoToLinkConfirm(pData)
{
	sData = pData
	if (sData.length > 0)
	{
		if (confirm('Are You Sure?,\nAll Current Information Will be Lost!'))
		{
			location.href = pData;
		}
	}
}