// Core object start if (typeof window != "undefined") { if (typeof window.hosting == "undefined") { window.gabia = {}; } } else { if (!gabia) { gabia = {}; } } //¸ð¹ÙÀÏ ÆÇ´Ü Å¬·¡½º gabia.moble_checker = function () { this.mobile_domain = ""; this.mobile_index = "/mobile/index.php"; this.checkClient = function() { if ( this.isMobileDomain() || this.isMobile() ) { var url = "http://" + this.mobile_domain + this.mobile_index; location.href = url; } } this.isMobileDomain = function () { if (this.mobile_domain.toLowerCase() == location.host.toLowerCase()) { return true; } else { return false; } } this.isMobile = function(){ if( navigator.userAgent.match(/Android|BlackBerry|Opera Mini|IEMobile|iPhone|iPad|iPod/i) ) { return true; } else{ return false; } } }