<?php
function is_mobile()
{
  // Get the user agent
  $user_agent = $_SERVER['HTTP_USER_AGENT'];

  $mobile_agents = array(
    "240x320", "acer", "acoon", "acs-", "abacho", "ahong", "airness", "alcatel", "amoi", "android", "anywhereyougo.com", "applewebkit/525", "applewebkit/532", "asus", "audio", "au-mic", "avantogo", "becker", "benq", "bilbo", "bird", "blackberry", "blazer", "bleu", "cdm-", "compal", "coolpad", "danger", "dbtel", "dopod", "elaine", "eric", "etouch", "fly ", "fly_", "fly-", "go.web", "goodaccess", "gradiente", "grundig", "haier", "hedy", "hitachi", "htc", "huawei", "hutchison", "inno", "ipad", "iphone", "ios", "ipod", "ipaq", "jbrowser", "kddi", "kgt", "kwc", "lenovo", "lg ", "lg2", "lg3", "lg4", "lg5", "lg7", "lg8", "lg9", "lg-", "lge-", "lge9", "longcos", "maemo", "mercator", "meridian", "micromax", "midp", "mini", "mitsu", "mmm", "mmp", "mobi", "mot-", "moto", "nec-", "netfront", "newgen", "nexian", "nf-browser", "nintendo", "nitro", "nokia", "nook", "novarra", "obigo", "palm", "panasonic", "pantech", "philips", "phone", "pg-", "playstation", "pocket", "pt-", "qc-", "qtek", "rover", "sagem", "sama", "samu", "sanyo", "samsung", "sch-", "scooter", "sec-", "sendo", "sgh-", "sharp", "siemens", "sie-", "softbank", "sony", "spice", "sprint", "spv", "symbian", "tablet", "talkabout", "tcl-", "teleca", "telit", "tianyu", "tim-", "toshiba", "tsm", "up.browser", "utec", "utstar", "verykool", "virgin", "vk-", "voda", "voxtel", "vx", "wap", "wellco", "wig browser", "wii", "windows ce", "wireless", "xda", "xde", "zte",
  );

  // Pre-set $is_mobile to false.

  $is_mobile = false;

  // Cycle through the list in $mobile_agents to see if any of them
  // appear in $user_agent.

  foreach ($mobile_agents as $device)
  {

    // Check each element in $mobile_agents to see if it appears in
    // $user_agent.  If it does, set $is_mobile to true.

    if (stristr($user_agent, $device))
    {

      $is_mobile = $device;

      // break out of the foreach, we don't need to test
      // any more once we get a true value.

      break;
    }
  }

  return $is_mobile;
}

if (strstr(strtolower($_SERVER['HTTP_HOST']), "email.sommaiorfm.com.br"))
{
  header("Location: https://www.sommaiorfm.com.br/webmail");
  exit;
}

if (strstr(strtolower($_SERVER['HTTP_HOST']), "m.sommaiorfm.com.br"))
{
  header("Location: https://www.sommaiorfm.com.br/mobile");
  exit;
}

if (is_mobile())
{
  header("Location: https://www.sommaiorfm.com.br/mobile");
  exit;
}

// provisório...
if (true || strstr(strtolower($_SERVER['HTTP_USER_AGENT']), "googlebot"))
{
  header("Location: https://www.sommaiorfm.com.br/aovivo");
  exit;
}
?>
<!DOCTYPE html>
<html lang="en">
	<head>
    <title>Rádio Som Maior - FM 100,7 - Ouça ao vivo!</title>
    <meta charset="UTF-8" />
    <meta name="description" content="Líder absoluta de audiência há mais de 15 anos para os públicos A, B e C1, a rádio Som Maior FM 100,7, de Criciúma, é referência em transmissões de qualidade no Sul de Santa Catarina e Litoral Norte do Rio Grande do Sul."/>
    <meta name="keywords" content="radio,som,maior,sommaior,fm,am,criciuma,sul,sc,quatrooito,48,informacao,politica"/>
		<meta name="author" content="Burn web.studio"/>
		<meta name="apple-itunes-app" content="app-id=566001626" />
		<meta name="resource-type" content="document" />
		<meta name="classification" content="internet" />
		<meta name="revisit-after" content="1"/>
		<meta property='og:title' content='Rádio Som Maior' />
		<meta property='og:url' content='https://www.sommaiorfm.com.br/' />
		<meta property='og:locale' content='pt_BR' />
		<meta property='og:description' content='Site da Rádio Som Maior - FM 100,7. Ouça ao vivo a nossa programação!' />
		<meta property='og:image' content='https://www.sommaiorfm.com.br/aovivo/images/facebook.png' />
		<link rel="image_src" href="https://www.sommaiorfm.com.br/aovivo/images/facebook.png" />
		<link href="aovivo/images/favicon.png" rel="icon" />
		<link rel="apple-touch-icon" href="aovivo/images/profile.png" />
    <style type="text/css">
    html, body, iframe {
      width: 100%;
      height: 100%;
      overflow: hidden;
      margin: 0;
      padding: 0;
    }
    iframe {
      overflow: auto !important;
      border: 0;
    }
    </style>
	</head>
	<body>
    <iframe src="https://www.4oito.com.br/sommaior" frameborder="0" allow="fullscreen"></iframe>
	</body>
</html>
