var agent = navigator.userAgent.toLowerCase();

if (agent.indexOf('android') != -1) { // Google phones running Android OS
 
window.location = "iphone";

} else if (screen.width <= 700) { 
	
window.location.replace('iphone') 
	
} 
	
else { 
	
}; 

