


if(screen.width < 800)	{
 var navegador = navigator.userAgent.toLowerCase(); 
 	if( navegador.search(/iphone|ipod|android|nok(6|i)/) > -1 ){ 
	document.replaceChild(document.createElement("html"), document.documentElement);
	var aNewBodyElement = document.createElement("body");
		aNewBodyElement.id = "onbile";
		aNewBodyElement.style.margin = "0";
		aNewBodyElement.style.width = screen.width+"px";
		aNewBodyElement.style.height = screen.height+"px";
	document.body = aNewBodyElement;
	var metacreate = document.createElement("meta");
		metacreate.name = "viewport";
		metacreate.content = "width="+screen.width+"; initial-scale=1.0";
	document.body.appendChild(metacreate);
	var OnbileFrame = document.createElement("IFRAME");
		OnbileFrame.id = "testFrame";
		OnbileFrame.style.width = screen.width+"px";
		OnbileFrame.style.height = screen.height+"px";
		OnbileFrame.src = "../Mobile/home.html";
	document.body.appendChild(OnbileFrame);
																}
else{ document.location= "../Mobile/home.html"; }
						
						};
