	
function AddCookie(strName, strValue)
{	
	strCookieSettings = strName + "=" + strValue + ";path=/";
	
	document.cookie = strCookieSettings;
}	
	
function DeleteCookie(strName)
{	
	
}	
	
function SelectItem(objCtl, strVal)
{	
	if (navigator.appName == "Netscape")
	{
		for (var i = 0; i < objCtl.options.length; i++)
		{
			if (objCtl.options[i].value == strVal)
				objCtl.options[i].selected = true;
		}
	}
	else
	{
		objCtl.value = strVal;
	}
}	
	