function gup( name )
{
  name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
  var regexS = "[\\?&]"+name+"=([^&#]*)";
  var regex = new RegExp( regexS );
  var results = regex.exec( window.location.href );
  if( results == null )
    return "";
  else
    return results[1];
}


// Detect if we are on a mobile device, and redirect
if(gup('pass') == "") {
	if(DetectMobileQuick()) {
		window.location = 'http://mobile.northaxa.com/';	
	}
}
