MCA Resources
PDFs (right click, save file as...)
Docs (right click, save file as...)
Graphics/Banners (right click, save file as...)
Archive
JavaScript Mobile Device Redirect Code Copy/Paste code into head of Home page.
<script type="text/javascript">// <![CDATA[
var agent = navigator.userAgent.toLowerCase();
var touchOS = ('ontouchstart' in document.documentElement) ? true : false;
var mobileOS = typeof orientation != 'undefined' ? true : false;
var otherBrowser = (agent.indexOf("series60") != -1) || (agent.indexOf("symbian") != -1) || (agent.indexOf("windows ce") != -1) || (agent.indexOf("blackberry") != -1);
var black = (agent.indexOf("blackberry") !=-1) ? true:false;
var iOS = (navigator.platform.indexOf("iPhone") != -1) || (navigator.platform.indexOf("iPad") != -1) ? true : false;
var android = (agent.indexOf("android") != -1) || (!iOS && !otherBrowser && touchOS && mobileOS) ? true : false;
if (iOS==true){
var r=confirm("Would you like to download our new mobile app?");
if (r==true){document.location.href="http://itunes.apple.com/us/app/chamber-app/id359460663?mt=8";}
else {}
}
if (android==true){
var r=confirm("Would you like to download our new mobile app?");
if (r==true){document.location.href="https://play.google.com/store/apps/details?id=com.mychambers.main&feature=search_result#?t=W251bGwsMSwyLDEsImNvbS5teWNoYW1iZXJzLm1haW4iXQ..";}
else {}
}
if (black==true){
var r=confirm("Would you like to download our new mobile app?");
if (r==true){document.location.href="http://appworld.blackberry.com/webstore/content/9935/";}
else {}
}
// ]]></script>