// JavaScript Documentfunction determine(){	var agent = navigator.userAgent.toLowerCase();	var is_iphone = agent.indexOf('iphone');	var is_mobile = screen.width;	/*    document.write(""+agent+"");	document.write("<br>isiPhone = "+is_iphone+"");	document.write("<br>ismobile = "+is_mobile+"");	*/	if (is_iphone >-1 || is_mobile <640) { location = "index_mobi.php";}}function determineGallery(){	var agent = navigator.userAgent.toLowerCase();	var is_iphone = agent.indexOf('iphone');	var is_mobile = screen.width;	/*    document.write(""+agent+"");	document.write("<br>isiPhone = "+is_iphone+"");	document.write("<br>ismobile = "+is_mobile+"");	*/	if (is_iphone >-1 || is_mobile <640) { location = "mobile/index.php";}}