 function MobileCheck() {	  var winParent = parent;  var winSelf = window;  while (winParent .location !=winSelf .location ) {	winParent  = winParent.parent; 	winSelf  = winSelf.parent; }if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i) || (navigator.userAgent.match(/Android/i)) || (navigator.userAgent.match(/Windows CE/i)))) {	 		winSelf.location="http://hansanf.org/m/";	 	}  }  MobileCheck(); 
