<!--
if (top.location == self.location) {
top.location.href = "../../"
}

var nExpTime = 0.125*24*60*60*1000; 
function GetCookie(strName)
{
	var strReturn = "";
	var nLoop = 0;
	var nLength = 0;
	var strNameEx = strName + "=";
	var strTemp = "";
	while (nLoop < document.cookie.length)
	{
		nLength = nLoop + strNameEx.length;
		if (document.cookie.substring(nLoop, nLength) == strNameEx)
		{
			strTemp = document.cookie.indexOf(";", nLength);
			if (strTemp == -1)
			{
				strReturn = document.cookie.substring(nLength, document.cookie.length);
			}
			else
			{
				strReturn = document.cookie.substring(nLength, strTemp);
			}
			break;
		}

		nLoop = document.cookie.indexOf(" ", nLoop) + 1;
		if (nLoop == 0)
		{
			break;
		}
	}
	return strReturn;
}

function SetCookie(strName, strValue)
{
	var dtExpire = new Date();
	dtExpire.setTime(dtExpire.getTime() + nExpTime);
	document.cookie = strName + "=" + strValue + "; expires=" + dtExpire.toGMTString();
}
function GetValue()
{
	var strValue;
	strValue = GetCookie("IauPassword");
	if (strValue != "")
	{		
		document.news.pass.value = strValue;
	}
}
function SetValue()
{
	SetCookie("IauPassword", document.news.pass.value);
}
//-->

