/**
 * Identify browser and redirect if iPhone or Android OS.
 * 
 */
var chrome=0;
var iPhone=0;
var android=0;
if (BrowserDetect.OS.indexOf("iPhone") != -1) 
	window.location="i.html";
else if (BrowserDetect.OS.indexOf("Android") != -1) {
	android=1;
	window.location="a.html";	
}
else if (BrowserDetect.browser.indexOf("Chrome") != -1)
	chrome=1;



