	//hides the default text if the user has JS enabled

/** used to get a query string parameter based on name.  
  * ex:  var name = (getParam("name") == "") ? "" : getParam("name");
*/
function getParam(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 id = (getParam("id") == "") ? "" : getParam("id");
	if ( id != "olay" ){
		document.write("<script src=http://4qinvite.4q.iperceptions.com/1.aspx?sdfc=462afbba-22459-67374c17-d77a-4799-ad24-547f7395e11a&lID=1&loc=4Q-WEB2 type=text/javascript defer=defer></script>");
	}