function gup( name ){
	var regexS = "[\\?&]"+name+"=([^&#]*)";
	var regex = new RegExp ( regexS );
	var tmpURL = window.location.href;
	var results = regex.exec( tmpURL );
	if( results == null )
		return"";
	else
		return results[1];
}

var fullsite = gup( 'fullweb' );


if(!fullsite){//evaluar
if(screen.width < 480){ //ancho
 	var navegador = navigator.userAgent.toLowerCase();
 	 if( navegador.search(/iphone|ipod|android|nok(6|i)/) > -1 ){ 
 	 	alert("mobile");
		document.location= "http://www.renovators-atl.com/mobile/";
		/*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 = "http://www.renovators-atl.com/mobile/"; 
  		document.body.appendChild(OnbileFrame); */
  	
 	  } //  es iphone|ipod|android|nok(6|i)
      else { 
  		document.location= "http://www.renovators-atl.com/mobile/"; 
      } //else
}; //ancho


} //evaluar



