function initializeLandingPage() {

        if( isIE() ){
                var currentCID = readCIDCookie();
                clearCIDCookie();
                if( currentCID ){
                         var newURL = window.location.href ;
                         if( newURL.indexOf( 'cid' ) == -1 ){
                         		if( newURL.indexOf( '?' ) == -1 ){
                                	newURL = newURL +'?cid='+ currentCID ;
								}
								else {
									newURL = newURL +'&cid='+ currentCID ;
								}
                                Seam.Remoting.getContext().setConversationId(null);
                                window.location = newURL ;
                         }
                }
        }

        if (document.getElementById('displayIfScript') != null){
                document.getElementById('displayIfScript').style.display='block';
        }

        ymmoComponent.synchronize();
}

addLoadEvent(initializeLandingPage);