// JavaScript Document
	var url=window.location.toString();
	var str="",get="";
	
	if(url.indexOf("?")!=-1){ //url"?"
	  var ary=url.split("?")[1].split("&");
	  for(var i in ary){
		get=ary[i].split("=")[0]; //
		str=ary[i].split("=")[1]; //
	  }
	}
	
	if ( get=="" || str!=1 )
	{ 
		if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))) 
		{ 
			if (document.cookie.indexOf("iphone_redirect=false") == -1) 
			{ 
				//window.alert(str);
				window.location = "http://m.creatop.com.tw/"; 
			}
		}
	}

