function getECI(){var start = document.cookie.indexOf("ECI=");var len = start + 4;if ( ( !start ) && ( "ECI" != document.cookie.substring( 0, 3 ) ) ) {return null;}if ( start == -1 ) return null;var end = document.cookie.indexOf( ";", len );if ( end == -1 ) end = document.cookie.length;return unescape( document.cookie.substring( len, end ) );}document.write("");