//-->
function getArnott2 (cname) {   // GET COOKIE input parameter like "cookieA"
                                             
var result = null;
var myCookie = " " + document.cookie + ";";
var searchName = " " + cname.name + "=";
var startOfCookie = myCookie.indexOf(searchName)
var endOfCookie;
if (startOfCookie != -1) {
startOfCookie += searchName.length; // skip past cookie name
endOfCookie = myCookie.indexOf(";", startOfCookie);
result = unescape(myCookie.substring(startOfCookie, endOfCookie));
}
if (result == null)
	result = "";
return result;
}
//  End -->