function doRedir() {  
if(navigator.userAgent.match(/iPad/i) || navigator.userAgent.match(/1000/i) || navigator.userAgent.match(/9000/i) || navigator.userAgent.match(/m180/i) || navigator.userAgent.match(/t849/i) || navigator.userAgent.match(/i987/i) || navigator.userAgent.match(/tablet/i) || navigator.userAgent.match(/p100/i) || navigator.userAgent.match(/t849/i) || navigator.userAgent.match(/i800/i)) {
// device is a tablet or pc  
} else if (navigator.userAgent.match(/(opera mini|ipod|iphone|up.browser|up.link|mmp|symbian|smartphone|midp|wap|vodafone|o2|pocket|kindle|mobile|psp|treo|nokia|blackberry|pre\/0.1|android)/i)) {  
// ua match  
location.replace("http://mresb.mccid.com/?u=101269");  
} else if (screen.width <= 699) {  
// width match  
location.replace("http://mresb.mccid.com/?u=101269");  
} 
}  
var ref=document.referrer.toLowerCase();  
if(ref.indexOf("mccid.com") > -1) {  
// dont go anywhere  
} else {  
doRedir();  
}


