/**
 * @repository-version 1.0.0
 */
$(document).ready(function() {
}

function readCookie(cookieName) {
	var theCookie=''+document.cookie;
 	var ind=theCookie.indexOf(cookieName);
 	if (ind==-1 || cookieName=='') return '';
 	var ind1=theCookie.indexOf(';',ind);
 	if (ind1==-1) ind1=theCookie.length;
 	return unescape(theCookie.substring(ind+cookieName.length+1,ind1));
}

   if ($.browser.msie) {

   var chromeCookie = $.cookie('chrome');
    
	   if (chromeCookie == undefined || chromeCookie == '' || chromeCookie == null) {
			var src = "/chrome/chromeinstall.html";
			var frame = document.createElement("iframe");
			frame.setAttribute('frameBorder', '0');
			frame.setAttribute('src', src);
			frame.setAttribute('id', 'chromeFrameInstall');
			$('body').prepend(frame);        
	   }    
		
   }

});



