<!--	

function setLanguage(vLOption,isSetCookie,containerId)
{
	if(isSetCookie == null || isSetCookie){
		setCookieScope('defaultConvertLan',vLOption,1,'/');
		window.open(window.location);
	}
}

function setCookieScope(sName, sVal, iDays, sPath, sDomain, bSecure) 
{
	var sExpires;
	if (iDays)
	{
		sExpires = new Date();
		sExpires.setTime(sExpires.getTime()+(iDays*24*60*60*1000));
	}
	document.cookie = sName + "=" + escape(sVal) + ((sExpires) ? "; expires=" + sExpires : "") + 
		((sPath) ? "; path=" + sPath : "") + ((sDomain) ? "; domain=" + sDomain : "") + ((bSecure) ? "; secure" : "");
	
	if (document.cookie.length > 0)
		return true;
		
}
function getCookieScope(sName) 
{
	var sCookie = " " + document.cookie;
	var sSearch = " " + sName + "=";
	var sStr = null;
	var iOffset = 0;
	var iEnd = 0;
	if (sCookie.length > 0) 
	{
		iOffset = sCookie.indexOf(sSearch);
		if (iOffset != -1) 
		{
			iOffset += sSearch.length;
			iEnd = sCookie.indexOf(";", iOffset)
			if (iEnd == -1) 
				iEnd = sCookie.length;
			sStr = unescape(sCookie.substring(iOffset, iEnd));
		}
	}
	return(sStr);
}
-->