	
	  var tmpSpot = 'parentsconnect';
	  //var ctxtId = 'home';
	
	  var keywords = '';
	  var ctxtId = 'parentsconnect';
	  var ctxtCat = '';
	  var mkt = '';
	  var type = 'parentsconnect';
	  var keywordCharEnc = '';
	  var outputCharEnc= '';
	  var maxCount = '8';
	  var spotLinkId = 'parentsconnect_parentsconnect';
	 
	   if ( (keywords == undefined) || (keywords == "")) {
	      //keywords = getMetaTagKeywords();
		  keywords = "";
	   }
	
	  //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);
	  }
	  if (!isEmpty(keywordCharEnc)) {
	    conf.setKeywordCharEnc(keywordCharEnc);
	  }
	  
	    conf.setOutputCharEnc("utf8");
	 
	   
	  if (!isEmpty(maxCount)) {
	    conf.setMaxCount(maxCount);
	  }
	  if (!isEmpty(type)) {
	  
		var tmpURL = document.URL;
		if(tmpURL.indexOf("index.jhtml") > -1){   
	    conf.setType(type + "_mainpage");
		} else {
			conf.setType(type + "_contentpage");
		}
			
	  }
	
	  var myUrl = createOvertureCMLink(conf);
	  //alert(myUrl);
	  loadOvertureCMInclude(conf);
	
	  //Create a configuration object for linkspots and load the linkspots in
	  var lsConf = new overtureLinkspotConf();
	  lsConf.setNGrp(1);
	  lsConf.setNKw(10);
	  //This will use the mapping to determine the linkspot id
	  lsConf.setLinkspotId(spotLinkId);
	
	
	  var myLsUrl = createOvertureLinkspotLink(lsConf);
	 //alert(myLsUrl);
	
	  loadOvertureLinkspotInclude(lsConf);
	
