Index: branches/dev/data/class/SC_View.php
===================================================================
--- branches/dev/data/class/SC_View.php	(revision 11816)
+++ branches/dev/data/class/SC_View.php	(revision 11819)
@@ -142,15 +142,9 @@
 
 class SC_SiteView extends SC_View{
-    function SC_SiteView($cart = true, $is_mobile = false) {
+    function SC_SiteView($cart = true) {
     	parent::SC_View();
 		
-		// ·ÈÂÓ¥µ¥¤¥È¤ÈPC¥µ¥¤¥È¤Ç¥Æ¥ó¥×¥ì¡¼¥È¥Õ¥¡¥¤¥ë¤òÊÑ¹¹
-		if($is_mobile == true) {
-			$this->_smarty->template_dir = MOBILE_TEMPLATE_DIR;
-			$this->_smarty->compile_dir = MOBILE_COMPILE_DIR;
-		} else {
-			$this->_smarty->template_dir = TEMPLATE_DIR;
-			$this->_smarty->compile_dir = COMPILE_DIR;			
-		}
+		$this->_smarty->template_dir = TEMPLATE_DIR;
+		$this->_smarty->compile_dir = COMPILE_DIR;
 		$this->initpath();
 		
@@ -183,3 +177,10 @@
 }
 
+class SC_MobileView extends SC_SiteView {
+    function SC_MobileView() {
+    	parent::SC_SiteView();
+		$this->_smarty->template_dir = MOBILE_TEMPLATE_DIR;
+		$this->_smarty->compile_dir = MOBILE_COMPILE_DIR;
+	}	
+}
 ?>
