var keywords = ''
		 var ctxtId = 'games'
		 var ctxtCat = ''
		 var mkt = ''
		 var type = ''
		 var keywordCharEnc = ''
		 var outputCharEnc= ''
		 var maxCount = '4'
		
		  if ( (keywords == undefined) || (keywords == "")) {
		     keywords = getMetaTagKeywords();
		  }
		
		 //Create a configuration object and add the keywords to the conf.
		 var conf = new overtureContentMatchConf();
		
		 conf.setCtxtKeywords(keywords);
		 if (!isEmpty(ctxtId)) {
		   conf.setCtxtId(ctxtId);
		 }
		 else {
		    //use the map to get the ctxtId
		    conf.setCtxtIdMap(g_contextIdMap);
		 }
		
		 if (!isEmpty(ctxtCat)) {
		   conf.setCtxtCat(ctxtCat);
		 }
		 if (!isEmpty(mkt)) {
		   conf.setMkt(mkt);
		 }
		
		 if (!isEmpty(type)) {
		   conf.setType(type);
		 }
		 else {
		   conf.setTypeMap(g_typeIdMap);
		 }
		 if (!isEmpty(keywordCharEnc)) {
		   conf.setKeywordCharEnc(keywordCharEnc);
		 }
		 if (!isEmpty(outputCharEnc)) {
		   conf.setOutputCharEnc(outputCharEnc);
		 }
		 if (!isEmpty(maxCount)) {
		   conf.setMaxCount(maxCount);
		 }
		
		 var myUrl = createOvertureCMLink(conf);
	//	 document.writeln("<P>url = " + myUrl + "<BR>");
		 loadOvertureCMInclude(conf);
			  var links;
			  if(zSr) {
			     links = populateOvertureLinks(zSr);
			     if (links == undefined) {
			        //If this in not populated use dummy data
			        zSr = zSr_dummy;
			     }
			  }
			  else {
			    //If this in not populated use dummy data
			    zSr = zSr_dummy;
			  }
