// JavaScript Document
function returnIphone(){
	var agent=navigator.userAgent.toLowerCase();
	var is_iphone = ((agent.indexOf('iphone'))!=-1);
	return is_iphone;
}