\',
setB: '\
\ \'
};
/**
* If localStorage is not available
* we display a Set randomly.
*/
try {
if (localStorage.IVX_ABTest_checksum) {
var IVX_ABTest_checksum = localStorage.IVX_ABTest_checksum;
} else {
var IVX_ABTest_checksum = Math.floor(Math.random() * 10);
localStorage.IVX_ABTest_checksum = IVX_ABTest_checksum;
}
}
catch(err) {
var IVX_ABTest_checksum = Math.floor(Math.random() * 10);
}
if (IVX_ABTest_checksum % 2 == 1) {
document.write(IVX_ABTest.setA);
} else {
document.write(IVX_ABTest.setB);
}