var deviceIphone = "iphone";
var deviceIpod = "ipod";
var deviceS60 = "series60";
var deviceSymbian = "symbian";
var engineWebKit = "webkit";
var deviceAndroid = "android";
var deviceWinMob = "windows ce";
var deviceBB = "blackberry";
var devicePalm = "palm";

//Initialize our user agent string to lower case.
var uagent = navigator.userAgent.toLowerCase();
//**************************
// Detects if the current device is an iPhone.
if (uagent.search(deviceIphone) > -1)
{
      window.location = "http://m.gommo.com.br/";
}
//**************************
// Detects if the current device is an iPod Touch.
else if (uagent.search(deviceIpod) > -1)
{
      window.location = "http://m.gommo.com.br/";
}
//**************************
// Detects if the current browser is the S60 Open Source Browser.
else if (uagent.search(engineWebKit) > -1)
   {
     if ((uagent.search(deviceS60) > -1 || 
          uagent.search(deviceSymbian) > -1))
{
      window.location = "http://m.gommo.com.br/";
}
}
//**************************
// Detects if the current device is an Android OS-based device.
else if (uagent.search(deviceAndroid) > -1)
{
      window.location = "http://m.gommo.com.br/";
}
//**************************
// Detects if the current browser is a Windows Mobile device.
else if (uagent.search(deviceWinMob) > -1)
{
	window.location = "http://m.gommo.com.br/";
}
//**************************
// Detects if the current browser is a BlackBerry of some sort.
else if (uagent.search(deviceBB) > -1)
{
	window.location = "http://m.gommo.com.br/";
}
//**************************
// Detects if the current browser is on a PalmOS device.
else if (uagent.search(devicePalm) > -1)
{
	window.location = "http://m.gommo.com.br/";
}

/**if(navigator.userAgent.indexOf("iPhone") != -1)
{
	window.location = "http://m.gommo.com.br/";
}
else if(navigator.userAgent.indexOf("opera mini") != -1)
{
	window.location = "http://m.gommo.com.br/";
}
else if(navigator.userAgent.indexOf("symbian") != -1)
{
	window.location = "http://m.gommo.com.br/";
}
else if(navigator.userAgent.indexOf("j2me") != -1)
{
	window.location = "http://m.gommo.com.br/";
}
else if(navigator.userAgent.indexOf("iemobile") != -1)
{
	window.location = "http://m.gommo.com.br/";
}
else if(navigator.userAgent.indexOf("windows ce") != -1)
{
	window.location = "http://m.gommo.com.br/";
}
else if(navigator.userAgent.indexOf("iPod") != -1)
{
	window.location = "http://m.gommo.com.br/";
}
else if(navigator.userAgent.indexOf("aspen") != -1)
{
	window.location = "http://m.gommo.com.br/";
}
else if(navigator.userAgent.indexOf("dream") != -1)
{
	window.location = "http://m.gommo.com.br/";
}
else if(navigator.userAgent.indexOf("incognito") != -1)
{
	window.location = "http://m.gommo.com.br/";
}
else if(navigator.userAgent.indexOf("webmate") != -1)
{
	window.location = "http://m.gommo.com.br/";
}
else if(navigator.userAgent.indexOf("BlackBerry9500") != -1)
{
	window.location = "http://m.gommo.com.br/";
}
else if(navigator.userAgent.indexOf("BlackBerry9530") != -1)
{
	window.location = "http://m.gommo.com.br/";
}
**/