﻿var DCProductURLs = {
    "mobileweb": "m/index.html"
};

var DCshowiPhone = RegExp(" AppleWebKit/").test(navigator.userAgent) && RegExp(" Mobile/").test(navigator.userAgent);




if (DCshowiPhone) {
	var hs = window.location.hash;
	if(hs=="") hs = "#page=1";
	window.location.href = DCProductURLs["mobileweb"] + hs;
}