//Grab Window resolution

  var viewport_width = $(window).width();
  var viewport_height = $(window).height();

//Uncomment to print height and width for testing.
//document.write(viewport_width+'px ');
//document.write(viewport_height+'px');

//redirect the page

if (viewport_height<=853) {
	
 window.location.replace('teaser768/index.htm');
}
else {
 window.location.replace('teaser1080/index.htm');
}

