Link to home
Start Free TrialLog in
Avatar of Nightman
NightmanFlag for Australia

asked on

Javascript fuction to automatically allocate points

Those of us that frequent the Lounge used to have a handy little javascript function to automatically share out the points when closing out a long and convoluted "question". It seems that with the more recent changes to the interface here at EE this has been broken.

Since I'm clearly too lazy to try and fix it myself, here is what I need - you will see the variants below, and what the previous version did - you will note that the point allocation was previously derived from the page itself, and not assumed. With the changes to the site you will probably need to set the checked values of the checkboxes to true, make the "hidden" fields visible and then allocate the points. Note that the default Grade should be marked as "A", solution marked as incomplete, inaccurate and blindingly difficult to follow. That should make it useful in P&R as well.

Must work in IE, Firefox and Chrome, in both Expert and Premium super-eye-candy-bandwidth-muncher mode.
Splits the points evenly among all participants. Uneven values are "left over" to be manually re-allocated:
javascript:function%20pntz(){d=[],w=[],f=document.forms;f=f[f.length-1];a=f.getElementsByTagName('a');for(i=a.length-1;i>=0;i--){if(a[i].innerHTML==''){w[e]=a[i].id.substr(1)}else{if(a[i].parentNode.className=='value')e=a[i].innerHTML}}for(e%20in%20w)d.push(f['points_'+w[e]]);p=document.body.innerHTML.match(/You%20must%20award%20a%20total%20of%20(\d+)/)[1];i=d.length;for(e%20in%20d)d[e].value=parseInt(p/i);if(p%i)alert('Leftover:%20'+p%i+'%20pointz%20<|;-)')};pntz();
 
Splits the points evenly among all participants. The remainder is spread out among participants in order of their posting.
javascript:function%20pntz(){x=[],f=document.forms,f=f[f.length-1],l=document.getElementsByTagName('a');for(i=l.length;i>0;i--){if(f[e='points_'+l[i-1].id.substr(1)])x[l[i].innerHTML]=[i,e]};w=[];for(e%20in%20x)w.push([x[e][0],f[x[e][1]]]);p=document.body.innerHTML.match(/You%20must%20award%20a%20total%20of%20(\d+)/)[1];i=w.length;r=p%i;w.sort();for(e%20in%20w)w[e][1].value=parseInt(p/i)+((r-->0)?1:0);if(p<i)alert('Some%20get%20no%20poinx%20<|;-)');self.scrollTo(0,32768)};pntz()
 
Reserves a portion of the points for manual allocation and then splits the remainder as per the previous variation.
javascript:function%20pntz(){y=eval(prompt(%22Reserve%20poinks%22,%22%22));x=[],f=document.forms,f=f[f.length-1],l=document.getElementsByTagName('a');for(i=l.length;i>0;i--){if(f[e='points_'+l[i-1].id.substr(1)])x[l[i].innerHTML]=[i,e]};w=[];for(e%20in%20x)w.push([x[e][0],f[x[e][1]]]);p=document.body.innerHTML.match(/You%20must%20award%20a%20total%20of%20(\d+)/)[1];i=w.length;r=(p-y)%i;w.sort();for(e%20in%20w)w[e][1].value=parseInt((p-y)/i)+((r-->0)?1:0);if(p-y<i)alert('Some%20get%20no%20poinx%20<|;-)');f['knowledgeBase'].checked=false;f['gradeTypeID4'].checked=true;self.scrollTo(0,32768)};pntz()

Open in new window

Avatar of DanRollins
DanRollins
Flag of United States of America image

As you know, the new system does the calculations for you, assigning left-over poinx to the earliest posters. Rather than reinvent that wheel, my code uses the internal logic to do the split.
The only tricky part is making sure to not give px on the second or subsequent posts.
As to the second and third part of the question...
Why on earth would I want to ANSWER THREE QUESTIONS for the price of ONE?
-- Dan
P.S.  I have no idea if this will work in FireFox or other "5% browsers"

javascript:function%20px(){sa='';c=document.getElementsByTagName('INPUT');for(i=0;i<c.length;i++){if(c[i].type=='checkbox'&&c[i].id!='knowledgeBase'){s=c[i].parentElement.innerHTML;x=s.indexOf('.html">')+7;s1=s.substr(x);if(sa.indexOf(s1)==-1){sa+=s1;c[i].click();}}}};px();
 
javascript:
function px(){
	sa='';c=document.getElementsByTagName('INPUT');
	//alert(c.length);
	for(i=0;i<c.length;i++){
		//if(c[i].type=='checkbox'&&c[i].id!='knowledgeBase'){ // just unchedks the add-to kbase checkbox,, no problem
		if(c[i].type=='checkbox'){
			s=c[i].parentElement.innerHTML;
			x=s.indexOf('.html">')+7;
			s1=s.substr(x);
			if(sa.indexOf(s1)==-1){
				sa+=s1;c[i].click();
				//alert(sa);
			}
		}
	}
};px();

Open in new window

^ Doesn't seem to work at all.
Thanks anyway.

The "built-in point calculator" is a royal pain and next to useless [if not completely past it].
I've tried it in both IE and FF.  Doesn't do anything
Avatar of Nightman

ASKER

Thanks, DanRollins, for your input.

Using IE8, the first one performs the split with the same logic as the "built in" calculator. The reason for not wanting to allocate the leftovers automatically is that you can dish out the remainder yourself, as you see fit. Arguably that can still be done manually, so no biggie.

However, it does not work in FF (and I haven't tested chrome yet, but if it fails in FF, it's likely to fail in Chrome).

I'm not concerned about tmost browsers myself, but given that (depending on which stats you believe) Firefox has a market share from between 20% and 50%, that can hardly be written off as "fringe".

Add to that the users of this site are probably more discerning that the rest of the internet since they are more tech-savvy (a wide generalization, but certainly statistically significant), and that the script is for this site, it becomes a requirement.

If you can get it working in FF and Chrome, I'll open another two questions for part II and III ... :)
OK, change parentElement to parentNode in one place
StoneG & Roggee, Who asked you?
I forgot to mention: It must be one of your own open questions. And you need to click "Accept Multiple Solutions" before running the fn.

javascript:function%20px(){sa='';c=document.getElementsByTagName('INPUT');for(i=0;i<c.length;i++){if(c[i].type=='checkbox'){s=c[i].parentNode.innerHTML;x=s.indexOf('.html">')+7;s1=s.substr(x);if(sa.indexOf(s1)==-1){sa+=s1;c[i].click();}}}};px();
 
javascript:
function px(){
	sa='';c=document.getElementsByTagName('INPUT');
	//alert(c.length);
	for(i=0;i<c.length;i++){
		//if(c[i].type=='checkbox'&&c[i].id!='knowledgeBase'){ // just unchedks the add-to kbase checkbox,, no problem
		if(c[i].type=='checkbox'){
			s=c[i].parentNode.innerHTML;
			x=s.indexOf('.html">')+7;
			s1=s.substr(x);
			if(sa.indexOf(s1)==-1){
				sa+=s1;c[i].click();
				//alert(sa);
			}
		}
	}
};px();

Open in new window

>Who asked you?<

Just passing along information I thought you might find helpful.

Didn't mean to make you feel small.
Did not want to say anything, but since we (and I use the term loosely) don't get checkboxes, why do we need to pretend to have them in the code?

And why don't we get checkboxes?

Oh, and them new splitter don't work for me not.

hth
capt.
Ok, Dan.

The latest splitter works in FF, Chrome and IE (latest builds of each). However, the grading options still need to be automatically selected, and it is still automatically saved to the knowledge base.

Cheers
Nightman
FF v3.5.2 and the splitter does nothing in Premie skin
nor in exp skin...
FF v3.5.2 and it's working for me in eye-candy mode. I guess I must be super-special.
You are.

But it seems that the site behaves 'special' for some others too. I have tried both scripts in various configs now and the 'accept multiple' page just sits there.

FF build Firefox/3.5.2 (.NET CLR 3.5.30729)
Do you get the checkboxes?
Yes, I do get the checkboxes. Now I'm certain that I'm more special than you are.
So there is not just the assumption of you being more special, but that your version of the lounge is rendered with special objects such as check boxes.

We can probably confirm therefore that the splitter works on a v3.5.2 of FF with checkboxes when splitting.

There is not yet anyone without checkboxes able to confirm it works...

btw, no cbs on www and on beta server.
Perhaps it's related to the fact that I don't have premium. Oh well, let DanRollins really earn these poinks then ...
Well I had to ask:
https://www.experts-exchange.com/questions/24709762/Checkboxes-when-accepting-multiple-solutions-to-questions.html

Good theory but I think BT has got checkbox display and premie...
Try clearing your cache and then logging on again. I know, I know, you'll have to download all that porn all over again, but it really won't kill you.
Just logged on with Chrome, never used it before.

Browsed to EE, netered pw for first time and hey, presto....!

Nothing. The same 'no checkbox' scenario.

Not a cache issue me thinks..
ASKER CERTIFIED SOLUTION
Avatar of Zvonko
Zvonko
Flag of North Macedonia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
>>The problem is that the new version of splitPoints.jsp

Really? So this section over here doesn't really exist?

"<div class="pointsTitleFull">Points: <span class="pointsTitle">500</span></div>"

Them EE engineers are getting sneakier by the minute.
Hey, that splitter works for me. It leaves a remainder (remeinder!) but at least we're on the right track....
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Awesome!  That worked for me, DR
Sweet! It even checks the A Grade for you.     : )

Thanks Dan!    
:-( Does not work for me...
>>Really? So this section over here doesn't really exist?

The secion exist on this page but go to "Accept Multiple Solutions" page and tell me where you see the points amount please.

I see it at the top right of the page. Bear in mind that I'm working in super-extra-eye-candy mode right now because I'm too lazy to answer questions for points.

Currently using FF3.5.2, in case it's browser sensitive.
Sorry I do not see it neither in Premium nor in Expert mode.
Can you please post the screen shot and the setting parameters that will guide me to the eye-candy mode?

The eye candy mode is the "Premium" skin. Here is a screenshot of this question when attempting to split:
ss.jpg
I guess this again is the issue with the two different UIs for different members.

AMS for me has no div tag with point total in the page source.

But zvonko's splitter works fro me and DR's doesn't...
The points are NOT displayed in the Lounge TA Premium interface and therefore I posted my new test question here to see the difference: http:Q_24714563.html
Hmmm .... I see the same thing over here - http:Q_24645836..html

Perhaps I have my own, private interface ...
Can ypu post me a comment in this question please: http:Q_24714563.html
The points are also not displayed in the TA for Domino Servers which I have tried the AMS on. Source code for this below.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript">
  // <![CDATA[
  var eeTimerStart = new Date().getTime();
  var eeTimerCnt = 0;
  var eeAdsLoaded = 0;
  var ourMs = 0;
  var adMs = 0;
  
  function eeEncode(str)
  {
     str = escape(str);
     str = str.replace('+', '%2B');
     str = str.replace('%20', '+');
     str = str.replace('*', '%2A');
     str = str.replace('/', '%2F');
     str = str.replace('@', '%40');
     return str;
  }
  
  function endEETimer()
  {
      if (++eeTimerCnt == 4) {
         ourMs = (new Date().getTime() - eeTimerStart);
         eeTimerStart = new Date().getTime();
      
      } 
      if (eeTimerCnt == 5 && eeAdsLoaded == 1) {
         adMs = (new Date().getTime() - eeTimerStart);
         eeTimerStart = new Date().getTime();
      }
      if (eeTimerCnt == 6) {
         var omnitureMs = (new Date().getTime() - eeTimerStart);
         var img = document.createElement("img");
         img.src="/pageLoaded.jsp?url=" + eeEncode(document.location.href) + 
                 "&isNew=0" +
                 "&adMs=" + adMs + "&ourMs=" + ourMs + "&omnitureMs=" + omnitureMs + 
                 "&isSecure=0" + 
                 "&isExpertSkin=0" + 
                 "&isVS=0" + 
                 "&isUsingOptVS1=0" + 
                 "&isUsingCDN=0" +
                 "&isUsingEELevel3CDN=1" +
                 "&isUsingEEDigitalWestCDN=0" +
                 "&isConsolidatedCSS=1"; 
         
 
         document.body.appendChild(img)
 
 
      }
  }
 
  // ]]>
  </script>
  <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<link rel="shortcut icon" href="/images/ee.ico" type="image/x-icon" />
 
<style type="text/css">@import "http://images.experts-exchange.com/getCSS?key=/ee_NS|--base,xp--base,--component,xp--component,--formFactory,xp--formFactory,xp--button,xp-include-infoBox&t=1251995802000";</style>
<style type="text/css">@import "http://images.experts-exchange.com/getCSS?key=/ee_NS|-jsp-splitPoints,xp-jsp-splitPoints,-include-question,xp-include-question,xp-include-ranks,-include-richtext,xp-include-codeSnippet,xp-include-corpAdBannerLI,-include-expertZoneOverlay,xp-include-expertZoneOverlay&t=1251995802000";</style>
<script src="http://images.experts-exchange.com/scripts/eeSubs_77e1af393a3b5cd172dabe3438fcaf77.js" type="text/javascript"></script>
  <script src="http://images.experts-exchange.com/scripts/translationOptions_a68cdae2b8b8d6456dc55afdb130e251.js" type="text/javascript"></script>
 
<title>Split Points for Domino - Second Domain setting up email aliases and inboxes</title>
<script src="http://images.experts-exchange.com/scripts/s_code_bc873925a5d35e2bf96b4ae5f5cc3c8f.js" type="text/javascript"></script> </head>
<body style="height: 100%;" class="Firefox3 Firefox35 navTest">
 
 <div id="minWidth"></div>
<div class="outerBodyWrap splitPointsJSP">
  <div class="bodyWrap ">
  <div id="outerWrap">
   <div class='innerWrap' >
   <div id="pageHeaderTest">
 
        <!-- top options -->
        <ul class="navTopOptions">
 <li class="loginName">Hello captainreiss</li>
 <li class="navTopOptButton"><span class="ntoR"><a href="/editMember.jsp?mid=3546631">My Account</a></span></li>
 <li class="navTopOptButton"><span class="ntoR"><a href="/?openQuest=true&mqIndex=1#myQuestions">Open Questions (8)</a></span></li>
 <li class="navTopOptButton"><span class="ntoR"><a href="/logout.jsp?redirectURL=/Software/Server_Software/Email_Servers/Lotus_Domino/splitPoints.jsp%3Fqid%3D24709134%26aid%3D25264875">Logout</a></span></li>
</ul>
 
<div id="compPgHrLo"><a href="/">Experts Exchange</a></div>
<div class="clear"></div>
<script type="text/javascript">
      function expertZonePopup()
      {
//         showPopupOverlay('expertZonePopup', 480, 300, '/shared/async/expertZoneOverlay.jsp', false, false, 'Firefox3 Firefox35');
         showPopupOverlay('newExpertZoneInBeta', 710, 220, '/shared/async/expertsZone/newExpertZoneInBeta.jsp', false, false, 'Firefox3 Firefox35');
      }
   </script>
 
<div id="compPgHrNavTest"><ul>
<li class="compPgHrNavAskTest"><a href="newQuestionWizard.jsp">Ask</a></li>
<li class="compPgHrNavExTest"><div><a href="javascript: expertZonePopup();"><span>Experts</span></a></div></li>
<li class="compPgHrNavSolTest"><a href="/solutions.jsp">Solutions</a></li>
<li class="compPgHrNavArtTest"><a href="/articles/">Articles</a></li>
</ul>
<div class="clearLeft"></div>
 
</div>
<div id="compPgHrSrchTest" >
     <form class="formFactory" action="/simpleSearch.jsp" method="get" id="topSearchbox" onsubmit="postAsycOmnitureGoogleSearch('seModeInput');">
     <input type="hidden" name="sfFreshSearch" value="1" />
     <input type="hidden" name="omnitureSearchType" value="EE Search" />
     <input type="hidden" name="cid" value="315" />
     <input type="hidden" name="redirectURL" value="/" />
     <input type="text" name="q" value="Enter Your Search Terms" class="textInput" id="gsearchBox" onfocus="clearSearchBoxRecolor(gsearchBox, 'Enter Your Search Terms', '#667B8A');" />
     <input type="submit" class="tsSubmit" value="1" name="searchSubmit" />
     </form>
 
</div>
 <div class="clear"></div>
<div id="compZnNavTest"><ul>
<li class="first"><a href="/allTopics.jsp" id="znBrowseAll">Browse All</a></li>
<li><a href="/Microsoft/" onClick="createNavMenu(this, 14466); return false;" id="znMicroSoft">Microsoft</a></li>
<li><a href="/Apple/" onClick="createNavMenu(this, 14554); return false;" id="znApple">Apple</a></li>
<li><a href="/Digital_Living/" onClick="createNavMenu(this, 14718); return false;" id="znDigiLiv">Digital Living</a></li>
<li><a href="/Hardware/" onClick="createNavMenu(this, 15284); return false;" id="znHardware">Hardware</a></li>
<li class="znC"><a href="/Software/" onClick="createNavMenu(this, 12771); return false;" id="znSoftware">Software</a></li>
<li><a href="/Developer/" onClick="createNavMenu(this, 14723); return false;" id="znDevel">Developer</a></li>
 
<li><a href="/OS/" onClick="createNavMenu(this, 14725); return false;" id="znOs">OS</a></li>
<li><a href="/Storage/" onClick="createNavMenu(this, 14724); return false;" id="znStorage">Storage</a></li>
<li><a href="/Database/" onClick="createNavMenu(this, 14726); return false;" id="znDatabase">Database</a></li>
<li><a href="/Security/" onClick="createNavMenu(this, 14727); return false;" id="znSecurity">Security</a></li>
<li><a href="/Programming/" onClick="createNavMenu(this, 15287); return false;" id="znProg">Programming</a></li>
<li><a href="/Web_Development/" onClick="createNavMenu(this, 14728); return false;" id="znWebDev">Web Development</a></li>
<li><a href="/Networking/" onClick="createNavMenu(this, 15285); return false;" id="znNetwork">Networking</a></li>
<li><a href="/Other/" onClick="createNavMenu(this, 15286); return false;" id="znOther">Other</a></li>
</ul><div class="clear"></div></div>
 
<div id="navMenuViewport" class="navMenuViewport" onMouseOut="setHidNavMenu();" onMouseOver="zoneNavSlideMenu.dontHide();"><div id="navMenuSlider" class="navMenuSlider"></div></div>
<script type="text/JavaScript">
var zoneNavSlideMenu = null;
var currNavA = null;
function createNavMenu(obj, zoneID)
{
   if (zoneNavSlideMenu &&
       zoneNavSlideMenu.menuLevels[0] != zoneID)
   {
      zoneNavSlideMenu.destroy();
      currNavA.className = "";
      zoneNavSlideMenu = null;
   }
   
   if (zoneNavSlideMenu == null)
   {
      zoneNavSlideMenu = new slidingMenuObject('navMenuViewport', 'navMenuSlider', 'zoneNavSlideMenu', 200, 20, zoneID, '/shared/async/navigationMenu.jsp?menuName=', 'N');
      zoneNavSlideMenu.anchorObj = obj;
   }
   zoneNavSlideMenu.show(obj, true);
   obj.className = "znM";
   currNavA = obj;
}
 
function setHidNavMenu()
{
   zoneNavSlideMenu.delayHide(currNavA);
}
 
</script>
</div>
<div id="corpAdBannerLI" class="bannerAd3"">
  <div class="bannerBG">
    <a class="bannerButton" href="https://secure.experts-exchange.com/subscribeCorporateAccount.jsp?cid=889"></a>
    <a class="bannerClose" href="javascript:void(0);" onclick="hideElement('corpAdBannerLI');addCookie('DCLIAD', 'true');"></a>
  </div>
</div>
<div id="breadCrumb">
         <ul>
 
<li><a href="/">Home</a></li>
<li><a href="/Software/">Software</a></li>
<li><a href="/Software/Server_Software/">Server Software</a></li>
<li><a href="/Software/Server_Software/Email_Servers/">Email Servers</a></li>
<li><a href="/Software/Server_Software/Email_Servers/Lotus_Domino/">Lotus Domino</a></li>
<li class="currentPage">Split Points</li>
</ul>
</div>
<div id="pageRight"><div class="c cb cF5" id="compMyAct" >
<table class="h"><tr><td class="l"></td><td><span class="myAcc"></span>
</td><td class="r"></td></tr></table>
 
<div class="bc"><div class="b">
<div class="compMyActC">
    <ul>
      <li>My Profile: <a href="/editMember.jsp">Edit</a> | <a href="/M_3546631.html">View</a></li>
      
      <li><a href="/?knowledgeBase=true&mqIndex=3#myQuestions">Knowledgebase</a></li>
 
<li>
        <form name="myAccountSkinForm" method="get" action="http://www.experts-exchange.com/setSkin.jsp">
 
          Skin:
<input type="hidden" name="skinTypeID" value="60" />
Premium | <a href="javascript:void()" onClick="document.myAccountSkinForm.submit(); return false;">Expert</a>
<input type="hidden" name="Submit" value="Submit" />
<input type="hidden" name="redirectURL" value="/Software/Server_Software/Email_Servers/Lotus_Domino/splitPoints.jsp?qid=24709134&amp;aid=25264875" />
</form>
      </li>
<li><a href="/?openQuest=true&mqIndex=1#myQuestions">Open Questions</a> (8)</li>
 
<li><a href="/QH_3546631.html">Question History</a> (446)</li>
 
</ul>
 
<div class="status">Status: Qualified Expert</div>
</div>
</div></div>
<table class="f"><tr><td class="l"></td><td>&nbsp;</td><td class="r"></td></tr></table>
</div>
<div id="compNwQst"> 
            <div class="newQuestionWizardButton bTypeA bGlowLarge bGlowLargeOrange"><a class="bTextAskaNewQuestion" href="newQuestionWizard.jsp" rel="nofollow"><div class="glowLeft"></div><div class="glowMiddle" style="padding-left: 28px; padding-right: 29px;"><div class="t2i" style="background: url(http://t2i.experts-exchange.com/t/421788-50.png) no-repeat;width:123px;height:18px;"></div></div><div class="glowRight"></div></a></div></div>
 
<div class="c cr" id="compMyFav" >
<table class="h"><tr><td class="l"></td><td><span class="myFav"></span>
</td><td class="r"></td></tr></table>
<div class="bc"><div class="b">
<p>Quickly Reference Your Favorite Zones</p>
 
<ul>
<li><a href="/Other/Lounge/">EE Lounge</a></li>
</ul>
<div class="favButtons">
<div class="bTypeA bGlowSmall bGlowSmallRed"><a class="bTextAdd" href="/editFavorites.jsp?taid=848&redirectURL=/Software/Server_Software/Email_Servers/Lotus_Domino/splitPoints.jsp%3Fqid%3D24709134%26aid%3D25264875&Add QuickLinks=" title="Add the Lotus Domino Zone to your Favorites"><div class="glowLeft"></div><div class="glowMiddle" style="padding-left: 24px; padding-right: 25px;"><div class="t2i" style="background: url(http://t2i.experts-exchange.com/t/421789-50.png) no-repeat;width:21px;height:12px;"></div></div><div class="glowRight"></div></a></div><div class="bTypeA bGlowSmall bGlowSmallGray"><a class="bTextEdit" href="/editFavorites.jsp?redirectURL=/Software/Server_Software/Email_Servers/Lotus_Domino/splitPoints.jsp%3Fqid%3D24709134%26aid%3D25264875"><div class="glowLeft"></div><div class="glowMiddle" style="padding-left: 25px; padding-right: 25px;"><div class="t2i" style="background: url(http://t2i.experts-exchange.com/t/413693-50.png) no-repeat;width:21px;height:12px;"></div></div><div class="glowRight"></div></a></div></div>
  <div class="clearLeft"></div>
  
</div></div>
<table class="f"><tr><td class="l"></td><td>&nbsp;</td><td class="r"></td></tr></table>
</div>
<div class="c cg cbgu" id="compTE" >
<table class="h"><tr><td class="l"></td><td><span class="HOFgn"></span>
</td><td class="r"></td></tr></table>
<div class="bc"><div class="b">
<script type="text/javascript">jsImport("com.ee.list.CollapsibleList");</script>
 
   <script type="text/javascript">
      var HOFDivContent = "HOFContent";
      function loadHOF(type)
      { 
         AsyncInclude("/shared/async/topExperts.jsp?taid=848&type="+type,HOFDivContent);
      }
   </script>
 
   <div id="HOFContent">
     <div class="sideBarHOFTitle">
<div class="t2i" style="background: url(http://t2i.experts-exchange.com/t/413085-50.png) no-repeat;width:67px;height:12px;" title="Lotus Domino"></div></div>
 
   <div class="HOFHeader">
      <div class="HOFTimeframe">
         <a href="javascript:void(loadHOF(3))">Week</a></div>
 
      <div class="HOFTimeframe">
         <a href="javascript:void(loadHOF(2))">Month</a></div>
      <div class="HOFTimeframe">
         <span class="selectedTF">Year</span>
         </div>
      <div class="HOFTimeframe last">
         <a href="javascript:void(loadHOF(0))">Overall</a></div>
 
   </div>
   <div class="clear"></div>
   <ol>
<li class="on"><div class="summary"> <a onmouseup="CL('Y1')" id="cCY1" class="cC"></a><span class="name">1. <span class="maleGuru"><a href="/M_1461917.html" title="sjef_bosman">sjef_bos&</a></span></span><span class="rank ">157,601</span></div><span class="maleGuru"><a href="/M_1461917.html" id="cAY1" class="cA"><div class="level"><div class="t2i" style="background: url(http://images.experts-exchange.com/t/134-50.png) no-repeat;width:22px;height:10px;"></div></div><div class="info"><div class="profile">Member Profile</div><p><span class="points">0</span> Expert Points Yesterday</p></div></a></span></li>
<li class=""><div class="summary"> <a onmouseup="CL('Y2')" id="cCY2" class="cC co"></a><span class="name">2. <span class="maleMaster"><a href="/M_261710.html" title="SysExpert">SysExpert</a></span></span><span class="rank ">100,802</span></div><span class="maleMaster"><a href="/M_261710.html" id="cAY2" class="cA co"><div class="level"><div class="t2i" style="background: url(http://images.experts-exchange.com/t/135-50.png) no-repeat;width:34px;height:10px;"></div></div><div class="info"><div class="profile">Member Profile</div><p><span class="points">248</span> Expert Points Yesterday</p></div></a></span></li>
 
<li class="on"><div class="summary"> <a onmouseup="CL('Y3')" id="cCY3" class="cC co"></a><span class="name">3. <span class="maleMaster"><a href="/M_3593905.html" title="mbonaci">mbonaci</a></span></span><span class="rank ">54,600</span></div><span class="maleMaster"><a href="/M_3593905.html" id="cAY3" class="cA co"><div class="level"><div class="t2i" style="background: url(http://images.experts-exchange.com/t/135-50.png) no-repeat;width:34px;height:10px;"></div></div><div class="info"><div class="profile">Member Profile</div><p><span class="points">0</span> Expert Points Yesterday</p></div></a></span></li>
<li class=""><div class="summary"> <a onmouseup="CL('Y4')" id="cCY4" class="cC co"></a><span class="name">4. <span class="male"><a href="/M_3613992.html" title="Bill-Hanson">Bill-Hanson</a></span></span><span class="rank ">48,737</span></div><span class="male"><a href="/M_3613992.html" id="cAY4" class="cA co"><div class="level"></div><div class="info"><div class="profile">Member Profile</div><p><span class="points">0</span> Expert Points Yesterday</p></div></a></span></li>
 
<li class="on"><div class="summary"> <a onmouseup="CL('Y5')" id="cCY5" class="cC co"></a><span class="name">5. <span class="male"><a href="/M_3914204.html" title="akhafaf">akhafaf</a></span></span><span class="rank ">44,987</span></div><span class="male"><a href="/M_3914204.html" id="cAY5" class="cA co"><div class="level"></div><div class="info"><div class="profile">Member Profile</div><p><span class="points">0</span> Expert Points Yesterday</p></div></a></span></li>
<li class=""><div class="summary"> <a onmouseup="CL('Y6')" id="cCY6" class="cC co"></a><span class="name">6. <span class="male"><a href="/M_4325100.html" title="fgrushevsky">fgrushevsky</a></span></span><span class="rank ">43,340</span></div><span class="male"><a href="/M_4325100.html" id="cAY6" class="cA co"><div class="level"></div><div class="info"><div class="profile">Member Profile</div><p><span class="points">0</span> Expert Points Yesterday</p></div></a></span></li>
 
<li class="on"><div class="summary"> <a onmouseup="CL('Y7')" id="cCY7" class="cC co"></a><span class="name">7. <span class="male"><a href="/M_235169.html" title="LotusDave">LotusDave</a></span></span><span class="rank ">28,725</span></div><span class="male"><a href="/M_235169.html" id="cAY7" class="cA co"><div class="level"></div><div class="info"><div class="profile">Member Profile</div><p><span class="points">0</span> Expert Points Yesterday</p></div></a></span></li>
<li class=""><div class="summary"> <a onmouseup="CL('Y8')" id="cCY8" class="cC co"></a><span class="name">8. <span class="male"><a href="/M_2060608.html" title="brwwiggins">brwwiggins</a></span></span><span class="rank ">22,425</span></div><span class="male"><a href="/M_2060608.html" id="cAY8" class="cA co"><div class="level"></div><div class="info"><div class="profile">Member Profile</div><p><span class="points">0</span> Expert Points Yesterday</p></div></a></span></li>
 
<li class="on"><div class="summary"> <a onmouseup="CL('Y9')" id="cCY9" class="cC co"></a><span class="name">9. <span class="male"><a href="/M_4464936.html" title="doninja">doninja</a></span></span><span class="rank ">17,236</span></div><span class="male"><a href="/M_4464936.html" id="cAY9" class="cA co"><div class="level"></div><div class="info"><div class="profile">Member Profile</div><p><span class="points">0</span> Expert Points Yesterday</p></div></a></span></li>
<li class=""><div class="summary"> <a onmouseup="CL('Y10')" id="cCY10" class="cC co"></a><span class="name">10. <span class="male"><a href="/M_4923011.html" title="GregBussey">GregBussey</a></span></span><span class="rank ">16,817</span></div><span class="male"><a href="/M_4923011.html" id="cAY10" class="cA co"><div class="level"></div><div class="info"><div class="profile">Member Profile</div><p><span class="points">0</span> Expert Points Yesterday</p></div></a></span></li>
 
<li class="on"><div class="summary"> <a onmouseup="CL('Y11')" id="cCY11" class="cC co"></a><span class="name">11. <span class="male"><a href="/M_4345358.html" title="vtoal">vtoal</a></span></span><span class="rank ">8,355</span></div><span class="male"><a href="/M_4345358.html" id="cAY11" class="cA co"><div class="level"></div><div class="info"><div class="profile">Member Profile</div><p><span class="points">0</span> Expert Points Yesterday</p></div></a></span></li>
<li class=""><div class="summary"> <a onmouseup="CL('Y12')" id="cCY12" class="cC co"></a><span class="name">12. <span class="male"><a href="/M_4671785.html" title="mekhet30">mekhet30</a></span></span><span class="rank ">7,955</span></div><span class="male"><a href="/M_4671785.html" id="cAY12" class="cA co"><div class="level"></div><div class="info"><div class="profile">Member Profile</div><p><span class="points">0</span> Expert Points Yesterday</p></div></a></span></li>
 
<li class="on"><div class="summary"> <a onmouseup="CL('Y13')" id="cCY13" class="cC co"></a><span class="name">13. <span class="male"><a href="/M_4893284.html" title="jitendrasachdeva">jitendrasa&</a></span></span><span class="rank ">7,000</span></div><span class="male"><a href="/M_4893284.html" id="cAY13" class="cA co"><div class="level"></div><div class="info"><div class="profile">Member Profile</div><p><span class="points">0</span> Expert Points Yesterday</p></div></a></span></li>
<li class=""><div class="summary"> <a onmouseup="CL('Y14')" id="cCY14" class="cC co"></a><span class="name">14. <span class="male"><a href="/M_972098.html" title="qwaletee">qwaletee</a></span></span><span class="rank ">6,175</span></div><span class="male"><a href="/M_972098.html" id="cAY14" class="cA co"><div class="level"></div><div class="info"><div class="profile">Member Profile</div><p><span class="points">0</span> Expert Points Yesterday</p></div></a></span></li>
 
<li class="on"><div class="summary"> <a onmouseup="CL('Y15')" id="cCY15" class="cC co"></a><span class="name">15. <span class="male"><a href="/M_3620099.html" title="garycutri">garycutri</a></span></span><span class="rank ">6,100</span></div><span class="male"><a href="/M_3620099.html" id="cAY15" class="cA co"><div class="level"></div><div class="info"><div class="profile">Member Profile</div><p><span class="points">0</span> Expert Points Yesterday</p></div></a></span></li>
<li class=""><div class="summary"> <a onmouseup="CL('Y16')" id="cCY16" class="cC co"></a><span class="name">16. <span class="male"><a href="/M_658410.html" title="tomsparrow">tomsparrow</a></span></span><span class="rank ">5,900</span></div><span class="male"><a href="/M_658410.html" id="cAY16" class="cA co"><div class="level"></div><div class="info"><div class="profile">Member Profile</div><p><span class="points">0</span> Expert Points Yesterday</p></div></a></span></li>
 
<li class="on"><div class="summary"> <a onmouseup="CL('Y17')" id="cCY17" class="cC co"></a><span class="name">17. <span class="male"><a href="/M_2091929.html" title="chuckalicious">chuckalici&</a></span></span><span class="rank ">5,750</span></div><span class="male"><a href="/M_2091929.html" id="cAY17" class="cA co"><div class="level"></div><div class="info"><div class="profile">Member Profile</div><p><span class="points">0</span> Expert Points Yesterday</p></div></a></span></li>
<li class=""><div class="summary"> <a onmouseup="CL('Y18')" id="cCY18" class="cC co"></a><span class="name">18. <span class="male"><a href="/M_3701525.html" title="KeremE">KeremE</a></span></span><span class="rank ">5,675</span></div><span class="male"><a href="/M_3701525.html" id="cAY18" class="cA co"><div class="level"></div><div class="info"><div class="profile">Member Profile</div><p><span class="points">0</span> Expert Points Yesterday</p></div></a></span></li>
 
<li class="on"><div class="summary"> <a onmouseup="CL('Y19')" id="cCY19" class="cC co"></a><span class="name">19. <span class="male"><a href="/M_4247773.html" title="daj_uk">daj_uk</a></span></span><span class="rank ">5,000</span></div><span class="male"><a href="/M_4247773.html" id="cAY19" class="cA co"><div class="level"></div><div class="info"><div class="profile">Member Profile</div><p><span class="points">0</span> Expert Points Yesterday</p></div></a></span></li>
<li class=""><div class="summary"> <a onmouseup="CL('Y20')" id="cCY20" class="cC co"></a><span class="name">20. <span class="male"><a href="/M_453109.html" title="CRAK">CRAK</a></span></span><span class="rank ">4,700</span></div><span class="male"><a href="/M_453109.html" id="cAY20" class="cA co"><div class="level"></div><div class="info"><div class="profile">Member Profile</div><p><span class="points">0</span> Expert Points Yesterday</p></div></a></span></li>
 
<li class="on"><div class="summary"> <a onmouseup="CL('Y21')" id="cCY21" class="cC co"></a><span class="name">21. <span class="male"><a href="/M_3477866.html" title="Blackmoorian">Blackmoorian</a></span></span><span class="rank ">4,668</span></div><span class="male"><a href="/M_3477866.html" id="cAY21" class="cA co"><div class="level"></div><div class="info"><div class="profile">Member Profile</div><p><span class="points">0</span> Expert Points Yesterday</p></div></a></span></li>
<li class=""><div class="summary"> <a onmouseup="CL('Y22')" id="cCY22" class="cC co"></a><span class="name">22. <span class="male"><a href="/M_810729.html" title="madheeswar">madhees&</a></span></span><span class="rank ">4,500</span></div><span class="male"><a href="/M_810729.html" id="cAY22" class="cA co"><div class="level"></div><div class="info"><div class="profile">Member Profile</div><p><span class="points">0</span> Expert Points Yesterday</p></div></a></span></li>
 
<li class="on"><div class="summary"> <a onmouseup="CL('Y23')" id="cCY23" class="cC co"></a><span class="name">23. <span class="male"><a href="/M_2986943.html" title="madgino">madgino</a></span></span><span class="rank ">4,000</span></div><span class="male"><a href="/M_2986943.html" id="cAY23" class="cA co"><div class="level"></div><div class="info"><div class="profile">Member Profile</div><p><span class="points">0</span> Expert Points Yesterday</p></div></a></span></li>
<li class=""><div class="summary"> <a onmouseup="CL('Y24')" id="cCY24" class="cC co"></a><span class="name">24. <span class="male"><a href="/M_4340632.html" title="lakshmidurga">lakshmidurga</a></span></span><span class="rank ">3,887</span></div><span class="male"><a href="/M_4340632.html" id="cAY24" class="cA co"><div class="level"></div><div class="info"><div class="profile">Member Profile</div><p><span class="points">0</span> Expert Points Yesterday</p></div></a></span></li>
 
<li class="on"><div class="summary"> <a onmouseup="CL('Y25')" id="cCY25" class="cC co"></a><span class="name">25. <span class="male"><a href="/M_2790223.html" title="olaraak">olaraak</a></span></span><span class="rank ">3,500</span></div><span class="male"><a href="/M_2790223.html" id="cAY25" class="cA co"><div class="level"></div><div class="info"><div class="profile">Member Profile</div><p><span class="points">0</span> Expert Points Yesterday</p></div></a></span></li>
</ol>
<div class="hofButtonCont">
<div class="bTypeA bSizeLarge bXPColorLargeBlue"><a class="bTextHallOfFame" href="/hallOfFame.jsp"><div class="t2i" style="background: url(http://t2i.experts-exchange.com/t/421790-50.png) no-repeat;width:87px;height:21px;"></div></a></div></div>
</div>
 
   </div></div>
<table class="f"><tr><td class="l"></td><td>&nbsp;</td><td class="r"></td></tr></table>
 
</div>
</div><div id="pageMain">
        <div id="minWidthMain"></div>
 
<div class="s shFFF5 sgray expGray sectionTwo question splitPoints sQuestion"><table class="h hQuestion"><tr><td class="l lQuestion"></td><td><div class="t2i" style="background: url(http://images.experts-exchange.com/t/526-50.png) no-repeat;width:146px;height:19px;"></div></td><td class="r"></td></tr></table><div class="bl blQuestion"><div class="br brQuestion"><div class="bbg bbgQuestion"><div class="empty"></div><div class="bc bcQuestion"><div class="question">
   <script type="text/javascript">
function showSelfDelete(qid){
   showPopupOverlay('selfDelete'+qid,600,200,'/shared/async/confirmAction.jsp?action=selfDelete&qid='+qid);
   
   var yWithScroll = 0;
   if (window.innerHeight && window.scrollMaxY) // Firefox
      yWithScroll = window.innerHeight + window.scrollMaxY;
   else if (document.body.scrollHeight > document.body.offsetHeight) // all but Explorer Mac
      yWithScroll = document.body.scrollHeight;
   else // works in Explorer 6 Strict, Mozilla (not FF) and Safari
      yWithScroll = document.body.offsetHeight;  
      
   document.getElementById(getBackgroundID('selfDelete'+qid)).style.height=yWithScroll;
   window.scrollTo(0, 0);
}
</script>
  <div class="infoBox eeText" id="attachmentDetails">
  <table class="infoBoxTable">
    <tr>
      <td class="infoBoxUL"></td>
 
      <td class="infoBoxUM">
        <a class="closeButtonTiny" href="javascript:void(0);" onclick="hideInfoBox('attachmentDetails');">[x]</a>
        <div class="title">Attachment Details</div>
      </td>
      <td class="infoBoxUR"></td>
    </tr>
    <tr>
      <td class="infoBoxML"></td><td class="infoBoxMM eeText"><div id="attachmentDetailsContent"></div></td>
 
      <td class="infoBoxMR"></td>
    </tr>
    <tr>
      <td class="infoBoxBL"></td>
      <td class="infoBoxBM"></td>
      <td class="infoBoxBR"></td>
    </tr>
  </table>
</div>
 
<div class="qTitle">
    <span class="name">Title:</span>
    <span class="value">
       <h1 class="titleHeader">Domino - Second Domain setting up email aliases and inboxes</h1>
    </span>
  </div>
<div class="qBody" id="EchoTopic">
<span class="name">Question:</span>
    <span class="value">
 
We have a mail server in-house with MX records for our domain - let's call it 'abc.com' - pointing to this servers ext IP. We have a global domain document which specifies the Global Domain Name accordingly as 'abc' without the .com.<br /><br />We have now bought another company which has a different mail domain with a different suffix too. Let's call that 'xyz.org.uk'.<br /><br />We require to run both domains to be live in parallel and the staff in our company to receive both email for their .com and their .org.uk on their Notes clients. This does not need be the same mailfile but it would make it easier. The user must be able to respond using each particular alias as we must not use one domain to respond to the other domain mail even though the people behind are the same...<br /><br />I have set up the alias in the Global Domain document so the abc.com is the Local primary Internet domain and the xyz.org.uk is an Alternate Internet domain alias.<br /><br />MQ: How do I setup the mail configuration in the directory so that the mail for both domains land in the appropriate inbox, and more importantly how will the user be able to reply (with corresponding reply-to address) with the alias appropriately to the domain the mail was addressed to?<br /><br />Many thanks<br />capt.</span>
</div>
 
<div class="qTagRow">
      <span class="name">Tags:</span>
      <span class="value">
<a class="tag" rel="tag nofollow noindex" href="http://www.experts-exchange.com/tag/Domino#allResults">Domino</a>, <a class="tag" rel="tag nofollow noindex" href="http://www.experts-exchange.com/tag/Global+Domain+alias#allResults">Global Domain alias</a></span>
 
   </div>
   <div class="clear"></div>
<div class="clear"></div>
    
<div class="clear"></div>
<div class="clear"></div>
 
<div class="hr hrBottom"></div>
</div>
 
<form method="post" action="/Software/Server_Software/Email_Servers/Lotus_Domino/splitPoints.jsp?qid=24709134&amp;aid=25264875" class="formFactory" onsubmit="return submitOnce();">
  <div class="answers">
<a id="a25264875"></a>
    <div class="s shF5FF sb expExpBlue sectionTwo answer answerHeader maleGuru"><table class="h"><tr><td class="l"></td><td><span class="sectionHeaderExtra">09/05/2009 - 04:45AM BST</span><div class="t2i" style="background: url(http://images.experts-exchange.com/t/59-50.png) no-repeat;width:108px;height:19px;"></div></td><td class="r"></td></tr></table><div class="bl"><div class="br"><div class="bbg"><div class="empty"></div><div class="bc"><div class="infoColHeader"></div><div class="infoColContainer "><div class="infoCol"><div class="infoColIcon"></div><p>Rank: <span>Guru</span></p></div>
 
  <div class="infoBody">
<div class="answerer"><a href="/M_4325100.html">fgrushevsky</a>:</div>
        <div class="answerBody quoted">
        <div class="richText">
          First part is easy one. All users that have email addresses defined with abc.com will receive mail with whatever aliases defined in Global domain document ('xyz.org.uk') assuming that address format is the same. <br />So if use email address is first.last@abc.com then she would also receive mail as first.last@xyz.org.uk<br />If address format is different such as first.last@abc.com and firstinitiallastname@xyz.o<wbr />rg.uk then second address should be added in the full name field.<br />The replying with appropriate address is a bit more difficult. The reply always goes with the default user address. I would try to setup 2 location documents with two different addresses, but then it would be up to the user to switch location before replying</div><!-- richText -->
        </div>
 
        <ul class="answerOptions">
          <li>
            <div class="formRow">
<label for="points_25264875">Assign number of points (from the total amount) for this answer:</label>
<input type="text" id="points_25264875" name="points_25264875" maxlength="3" class="text rightEdge" style="width: 56px; height: 16px;" />
</div>
          </li>
        </ul>
        
        <div class="clear"></div>
 
      </div>
</div>
<div class="infoColFooter"></div>
</div><div class="empty"></div></div></div></div><table class="f"><tr><td class="l"></td><td>&nbsp;</td><td class="r"></td></tr></table>
      </div>
<a id="a25265385"></a>
    <div class="s shF5FF sb expExpBlue sectionTwo answer answerHeader maleGenius"><table class="h"><tr><td class="l"></td><td><span class="sectionHeaderExtra">09/05/2009 - 09:47AM BST</span><div class="t2i" style="background: url(http://images.experts-exchange.com/t/59-50.png) no-repeat;width:108px;height:19px;"></div></td><td class="r"></td></tr></table><div class="bl"><div class="br"><div class="bbg"><div class="empty"></div><div class="bc"><div class="infoColHeader"></div><div class="infoColContainer "><div class="infoCol"><div class="infoColIcon"></div><p>Rank: <span>Genius</span></p></div>
  <div class="infoBody">
<div class="answerer"><a href="/M_1461917.html">sjef_bosman</a>:</div>
 
        <div class="answerBody quoted">
        <div class="richText">
          If you want Total Mail Separation, and you want to prevent users to send mail from the &quot;other&quot; address, you can only achieve that when you give all double users an alter ego, a second Notes-ID. To make it easier on them to switch ID, and mail database, you can:<br />- set up two Location documents, each with a different ID to switch to<br />- give each location a different mail database<br />- allow Reader rights in one database to the other user (these users should have Editor rights, or maybe less, to prevent unwanted ACL changes)<br />- create a mail forward agent or rule for the least used mail database, so a warning is sent to the other<br />- install VMware, and install a second Notes client in it, for people with large double egos (who want to be both persons at the same time)<br />- set up two Internet Site documents for Inbound SMTP, but it is not required (see fgrushevsky's post)</div><!-- richText -->
        </div>
 
        <ul class="answerOptions">
          <li>
            <div class="formRow">
<label for="points_25265385">Assign number of points (from the total amount) for this answer:</label>
<input type="text" id="points_25265385" name="points_25265385" maxlength="3" class="text rightEdge" style="width: 56px; height: 16px;" />
</div>
          </li>
        </ul>
        
        <div class="clear"></div>
 
      </div>
</div>
<div class="infoColFooter"></div>
</div><div class="empty"></div></div></div></div><table class="f"><tr><td class="l"></td><td>&nbsp;</td><td class="r"></td></tr></table>
      </div>
<a id="a25265966"></a>
    <div class="s shF5FF sb expExpBlue sectionTwo answer answerHeader maleGenius"><table class="h"><tr><td class="l"></td><td><span class="sectionHeaderExtra">09/05/2009 - 01:25PM BST</span><div class="t2i" style="background: url(http://images.experts-exchange.com/t/59-50.png) no-repeat;width:108px;height:19px;"></div></td><td class="r"></td></tr></table><div class="bl"><div class="br"><div class="bbg"><div class="empty"></div><div class="bc"><div class="infoColHeader"></div><div class="infoColContainer "><div class="infoCol"><div class="infoColIcon"></div><p>Rank: <span>Genius</span></p></div>
  <div class="infoBody">
<div class="answerer"><a href="/M_1461917.html">sjef_bosman</a>:</div>
 
        <div class="answerBody quoted">
        <div class="richText">
          &gt; This is the first real draw back of Notes over Outlook.<br />Kidding... Anyway, you *could* of course use Outlook via Domino... Naaah, bad idea! Bad!<br /><br />&gt;&nbsp;What about running a second mailserver? <br />Why would you? To keep things separated? Yes, you could, but where do you want to stash the mails, in separate databases??<br /><br />&gt;&nbsp;Can you have 2 Global domains on one server?<br />No.<br /><br />I suppose that's where the Internet Site document comes in, to have the Global stuff in that document. At least, I think so.<br /><br />IMHO, if you want 100% certainty that addresses aren't mixed up, you need 2 IDs a piece. Clean and simple, yet annoying for the users. <br /><br />Pwogwess causes sowwow...</div><!-- richText -->
        </div>
 
        <ul class="answerOptions">
          <li>
            <div class="formRow">
<label for="points_25265966">Assign number of points (from the total amount) for this answer:</label>
<input type="text" id="points_25265966" name="points_25265966" maxlength="3" class="text rightEdge" style="width: 56px; height: 16px;" />
</div>
          </li>
        </ul>
        
        <div class="clear"></div>
 
      </div>
</div>
<div class="infoColFooter"></div>
</div><div class="empty"></div></div></div></div><table class="f"><tr><td class="l"></td><td>&nbsp;</td><td class="r"></td></tr></table>
      </div>
</div>
 
  <div class="infoBox eeText" id="certInfoBox">
  <table class="infoBoxTable">
    <tr>
      <td class="infoBoxUL"></td>
 
      <td class="infoBoxUM">
        <a class="closeButtonTiny" href="javascript:void(0);" onclick="hideInfoBox('certInfoBox');">[x]</a>
        <div class="title">Select Grade</div>
      </td>
      <td class="infoBoxUR"></td>
    </tr>
    <tr>
      <td class="infoBoxML"></td><td class="infoBoxMM eeText"><div class="gradeInfo"><span class="highlight">A:</span> The Expert(s) either provided you with a thorough and informative answer or with a link to information that answered your question.</div><div class="gradeInfo"><span class="highlight">B:</span> The Expert(s) provided an acceptable solution, or a link to an acceptable solution. May assign if you needed a bit more information to complete the task.</div><div class="gradeInfo"><span class="highlight">C:</span> If you have given the Expert(s) ample time to respond to your clarification posts and you have responded to each of their posts providing requested information, or if the answers, after clarification, lack finality or do not completely address the issue presented, then a &quot;C&quot; grade is an option.</div><div class="gradeNote">(Note: The use of a C in a vindictive manner is likely to be changed by a Moderator.)</div></td>
 
      <td class="infoBoxMR"></td>
    </tr>
    <tr>
      <td class="infoBoxBL"></td>
      <td class="infoBoxBM"></td>
      <td class="infoBoxBR"></td>
    </tr>
  </table>
</div>
 
<div class="s shF5FF sb expGray sectionTwo nestedSection selectGrade"><table class="h"><tr><td class="l"></td><td><div class="t2i" style="background: url(http://images.experts-exchange.com/t/291-50.png) no-repeat;width:82px;height:19px;"></div></td><td class="r"></td></tr></table><div class="bl"><div class="br"><div class="bbg"><div class="empty"></div><div class="bc"><div class="questionGrade">
      <div>Select an appropriate grade: (<a class="" href="javascript:void(0);" onClick="showInfoBox(event, 'certInfoBox');">Grading Tips</a>)</div>
      
      <a href="javascript:void(0);" class="grade" onclick="this.blur();">
        <span class="gradeName">
          <span class="gradeLetter" onclick="document.getElementById('gradeTypeID4').click();">A</span><input type="radio" id="gradeTypeID4" name="gradeTypeID" value="4" class="radio"/>
</span>
        <span class="gradeCaption" onclick="document.getElementById('gradeTypeID4').click();">Excellent</span>
 
      </a>
 
      <a href="javascript:void(0);" class="grade" onclick="this.blur();">
        <span class="gradeName">
          <span class="gradeLetter" onclick="document.getElementById('gradeTypeID3').click();">B</span><input type="radio" id="gradeTypeID3" name="gradeTypeID" value="3" class="radio"/>
</span>
        <span class="gradeCaption" onclick="document.getElementById('gradeTypeID3').click();">Good</span>
      </a>
 
      <a href="javascript:void(0);" class="grade gradeLast" onclick="this.blur();">
        <span class="gradeName">
          <span class="gradeLetter" onclick="document.getElementById('gradeTypeID2').click();">C</span><input type="radio" id="gradeTypeID2" name="gradeTypeID" value="2" class="radio"  onclick="alert('Experts Exchange suggests that you assign a &quot;C&quot; grade only if the Expert started to help, but failed to return after you posted requests for additional help.\n\nYou can also ask the Moderators to delete the question or, if you solved the problem yourself, mark one of your own comments as the solution.');"/>
</span>
        <span class="gradeCaption" onclick="document.getElementById('gradeTypeID2').click();">Average</span>
      </a>
 
      <div class="formRow knowledgeBase">
        <input type="checkbox" id="knowledgeBase" name="knowledgeBase" value="true" checked="checked" class="checkbox" />
 
<label for="knowledgeBase">Add question to Knowledge Base</label>
</div>
    </div>
 
<div class="s snhFFFF expNoHeader questionRating"><table class="h"><tr><td class="l"></td><td>&nbsp;</td><td class="r"></td></tr></table><div class="bl"><div class="br"><div class="bbg"><div class="empty"></div><div class="bc"><div class="formRow">
        <div class="label">
          Was the solution complete?
        </div>
        <div class="questionRatingOption questionRatingOptionYes">
          <input type="radio" id="comp3" name="comp" value="3" class="radio"/>
<label for="comp3">Yes</label>
 
</div>
        <div class="questionRatingOption">
          <input type="radio" id="comp2" name="comp" value="2" class="radio"/>
<label for="comp2">Partially</label>
</div>
        <div class="questionRatingOption questionRatingOptionNo">
          <input type="radio" id="comp1" name="comp" value="1" class="radio"/>
<label for="comp1">No</label>
</div>
      </div>
 
      
      <div class="formRow">
        <div class="label">
          Was the solution accurate?
        </div>
        <div class="questionRatingOption questionRatingOptionYes">
          <input type="radio" id="acc3" name="acc" value="3" class="radio"/>
<label for="acc3">Yes</label>
</div>
        <div class="questionRatingOption">
          <input type="radio" id="acc2" name="acc" value="2" class="radio"/>
 
<label for="acc2">Partially</label>
</div>
        <div class="questionRatingOption questionRatingOptionNo">
          <input type="radio" id="acc1" name="acc" value="1" class="radio"/>
<label for="acc1">No</label>
</div>
      </div>
      
      <div class="formRow">
        <div class="label">
          Was the solution easy to understand?
        </div>
 
        <div class="questionRatingOption questionRatingOptionYes">
          <input type="radio" id="clar3" name="clar" value="3" class="radio"/>
<label for="clar3">Yes</label>
</div>
        <div class="questionRatingOption">
          <input type="radio" id="clar2" name="clar" value="2" class="radio"/>
<label for="clar2">Partially</label>
</div>
        <div class="questionRatingOption questionRatingOptionNo">
          <input type="radio" id="clar1" name="clar" value="1" class="radio"/>
 
<label for="clar1">No</label>
</div>
      </div>
      
      <label id="commentLabel" for="comments">Use the space below for an optional final message to the Experts who provided your solution. Only you and the Experts will see your comment. If you have any general comments about the solution, please close the question first, then post the comment.</label>
<div class="formRow autoHeight">
        <textarea id="comments" name="comments" rows="0" cols="0" style="width: 372px; height: 56px;"></textarea>
</div>
      
    </div><div class="empty"></div></div></div></div><table class="f"><tr><td class="l"></td><td>&nbsp;</td><td class="r"></td></tr></table>
      </div>
 
<div class="clear"></div>
    
  </div><div class="empty"></div></div></div></div><table class="f"><tr><td class="l"></td><td>&nbsp;</td><td class="r"></td></tr></table>
      </div>
<div class="formRow formSubmit formSubmitCenter formSubmitBottomEdge autoHeight">
    <input type="hidden" name="Submit Points" value="1"/><div class="bTypeButton bGlowLarge bGlowLargeBlue"><button class="bTextSubmitPoints" type="submit"><div class="glowLeft"></div><div class="glowMiddle" style="padding-left: 15px; padding-right: 15px;"><div class="t2i" style="background: url(http://t2i.experts-exchange.com/t/421811-50.png) no-repeat;width:83px;height:18px;"></div></div><div class="glowRight"></div></button></div></div>
 
</form>
</div><div class="empty"></div></div></div></div><table class="f"><tr><td class="l"></td><td>&nbsp;</td><td class="r"></td></tr></table>
      </div>
<!-- close the body column -->
      </div>
<div id="pageFooter">
 
<ul id="compFL">
  <li><a href="/aboutUs.jsp">About Us</a>|</li>
  <li><a href="/contactUs.jsp">Contact Us</a>|</li>
  <li><a href="/memberAgreement.jsp">Member Agreement</a>|</li>
<li><a href="http://www.alexa.com/siteinfo/experts-exchange.com" title="Internet Rank">Internet Rank</a>|</li>
  <li><a href="/privacyPolicy.jsp">Privacy Policy</a>|</li>
 
  <li class="lastInList"><a href="/siteMap.jsp">Site Map</a></li>
</ul>
<script type="text/javascript">
  if (hideCompFLOnCreate == true)
    document.getElementById('compFL').style.visibility = 'hidden';
</script><div id="compCpyr"><span class="noWrap"> &copy; Copyright Experts Exchange LLC 1996 - 2009.</span> <span class="noWrap">All rights reserved.</span></div>
</div><div id="bodyFooterSpacer"></div></div></div></div></div><script type="text/javascript">eeAdsLoaded = 0</script>
<script type="text/javascript" src="http://images.experts-exchange.com/timer/timer1.js"></script>
<script type="text/javascript" src="http://images.experts-exchange.com/timer/timer2.js"></script>
 
<script type="text/javascript" src="http://images.experts-exchange.com/timer/timer3.js"></script>
<script type="text/javascript" src="http://images.experts-exchange.com/timer/timer4.js"></script>
<img src="/timer/timer1.gif" onload="endEETimer()" />
<img src="/timer/timer2.gif" onload="endEETimer()" />
<img src="/timer/timer3.gif" onload="endEETimer()" />
<img src="/timer/timer4.gif" onload="endEETimer()" />
 
<script type="text/javascript">
  var fakeLocations = new Array();
  var realLocations = new Array();
</script>
<input type="hidden" name="refresh" value="1" />
<script type="text/javascript">
	</script>
	
   <script type="text/javascript">
	</script>
 
<img src="/timer/timer5.gif" onload="endEETimer()" />
<!-- SiteCatalyst code version: H.7.
Copyright 1997-2006 Omniture, Inc. More info available at
http://www.omniture.com -->
<script language="JavaScript"><!--
/* You may give each page an identifying name, server, and channel on
the next lines. */
var s = setUpOmnitureVariable();
s.pageName="/splitPoints.jsp";
s.server="www24.experts-exchange.com";
s.channel="Software/Server_Software/Email_Servers/Lotus_Domino";
s.pageType="";
s.prop1=document.title;
s.prop2="";
s.prop3="";
s.prop4="";
s.prop5="";
s.prop6="";
s.prop7="";
s.prop8="";
s.prop9="";
s.prop10="";
s.prop11="";
s.prop12="";
s.prop14="";
s.prop15="50";
s.prop16="";
s.prop17="";
s.prop18="";
s.prop19="";
s.prop20="";
s.prop21="";
s.prop22="";
s.prop23="";
s.prop24="";
s.prop25="";
s.prop26="";
s.prop27="";
s.prop28="";
s.prop29="";
s.prop30="en|en";
s.prop31="";
s.prop32="";
s.prop33="";
s.prop34="";
s.prop35="";
s.prop36="";
s.prop37="";
s.prop38="";
s.prop39="";
s.prop40="";
s.prop41="";
s.prop42="";
s.prop43="";
s.prop44="";
s.prop45="";
s.prop46="";
s.prop47="";
s.prop48="";
s.prop49="";
s.prop50="";
/* E-commerce Variables */
s.campaign="";
s.events="event4";
s.products="";
s.state="";
s.zip="";
s.purchaseID="";
s.eVar1=document.title;
s.eVar2="";
s.eVar3="";
s.eVar4="16";
s.eVar5="";
s.eVar6="Qualified Expert";
s.eVar7="Qualified Expert";
s.eVar8="";
s.eVar9="";
s.eVar10="";
s.eVar14="";
s.eVar15="";
s.eVar16="";
s.eVar17="";
s.eVar18="";
s.eVar19="";
s.eVar20="3546631";
s.eVar21="";
s.eVar22="";
s.eVar23="";
s.eVar24="";
s.eVar25="";
s.eVar26="";
s.eVar27="";
s.eVar28="";
s.eVar29="4AM";
s.eVar30="Tuesday";
s.eVar31="217.205.234.131";
s.eVar32="";
s.eVar33="";
s.eVar34="";
s.eVar35="";
s.eVar36="";
s.eVar37=""; 
s.eVar38="Control - Closing Process";
s.eVar39="";
s.eVar40="";
s.eVar41="";
s.eVar42="";
s.eVar43="";
s.eVar44="";
s.eVar45="EE_Level3 - 2";
s.eVar46="";
s.eVar47="";
s.eVar48="";
s.eVar49="";
 
 
/* Hierarchy Variables */
s.hier1="Software/Server_Software/Email_Servers/Lotus_Domino";
/************* DO NOT ALTER ANYTHING BELOW THIS LINE ! **************/
var s_code=s.t();if(s_code)document.write(s_code)//--></script>
<script language="JavaScript"><!--
if(navigator.appVersion.indexOf('MSIE')>=0)document.write(unescape('%3C')+'\!-'+'-')
//--></script><noscript><img
src="http://metrics.experts-exchange.com/b/ss/eexchangeprod/1/H.7--NS/0"
height="1" width="1" border="0" alt="" /></noscript><!--/DO NOT REMOVE/-->
<!-- End SiteCatalyst code version: H.7. -->
<script language="JavaScript">
   function getOmnitureFunction()
   {
      var s2 = setUpOmnitureVariable();
      s2.pageName="/splitPoints.jsp"
      s2.server="www24.experts-exchange.com"
      s2.channel="Software/Server_Software/Email_Servers/Lotus_Domino"
      s2.pageType=""
      s2.prop1=document.title
      s2.prop2=""
      s2.prop11=""
      s2.prop15="50"
      s2.prop31=""
      /* E-commerce Variables */
      s2.campaign=""
      s2.events="event4"
      s2.eVar1=document.title
      s2.eVar6="Qualified Expert"
      s2.eVar7="Qualified Expert"
      s2.eVar20="3546631"
      s2.eVar26=""
      s2.eVar29="4AM"
      s2.eVar30="Tuesday"
      s2.eVar31="217.205.234.131"
      s2.eVar33=""
      s2.eVar34=""
      s2.eVar35=""
      s2.eVar36=""
      s2.eVar45="EE_Level3 - 2"
      
      return s2;
   }
   
   function postToOmniture(s2)
   {
      if (!s2)
         s2 = getOmnitureFunction();
      
      /************* DO NOT ALTER ANYTHING BELOW THIS LINE ! **************/
      var s_code=s2.t();
   }
   
   function postAsycOmnitureGoogleSearch(elementID)
   {
      var googleRadionButton = document.getElementById(elementID);
      if ((googleRadionButton.type == 'radio' && googleRadionButton.checked) ||
          (googleRadionButton.type == 'hidden' && googleRadionButton.value == '1'))
      {
         var s2 = getOmnitureFunction();
         s2.prop39 = 'Google Search';
         s2.evar14 = 'Google Search';
         postToOmniture(s2);
      }
   }
 
   function postAsyncOmnitureProp(prop, value)
   {
      var s2 = getOmnitureFunction();
      eval("s2." + prop + " = '" + value + "';");
      //alert("s2." + prop + " = '" + value + "';");
      postToOmniture(s2); 
   }
 
</script>
<img src="/timer/timer6.gif" onload="endEETimer()" />
<script type="text/javascript">
      resizeFooter(false);// || false);
   </script>
<script type="text/javascript">
//<![CDATA[
 
addCookie('EECC_0', 'EEQUESTIONPAGELIID=VQP-LI-5&USE_CDN3=1&SCMESS=0&MSMVP=true&MEC3=1&ANGELPOP=false&expertsexchange=1573&HNQWFF=1&EETEMPB=0&EETEMPA=0&USECONSOLIDATEDCSS=false&CLIAD=5&DISCLAIMERAGREEMENT138=true&SEID=10&WHICHQUESTIONWIZARD=50&EEQUESTIONPAGEID=VQP-25&EESSID=18578&WHICHEXPERTZONE=10&WHICHEESITE=newSite&PQSB=0&DISCLAIMERAGREEMENT5148=true&CORPFUNNEL=0&EXPERTDISCLAIMER=true&CLOAD=2&eeNav=true&ARTP=true&MEC3V=NAVf&EEPAGES=1', 2147483647);
 
addCookie('DLC', 'qh=20&ah=20&ahf=100&mr=20&ch=20&qhf=100&chf=100&srp=100', 2147483647);
 
// ]]>
</script>
</body>
 
</html>
 
<!-- www24.experts-exchange.com:80 -->

Open in new window

Can someone please post a comment here: http:Q_24714563.html
done.
Hello? <tap><tap><tap> Is this thing working?
No.   Try moving the little switch on the side.
Ahem <cough> <cough> <sniff>
It appears that some scripts work for some people, and some for others. Not sure if this is a result of EE tinkering with the code, random browser caching or simply that some of us are more special than others (see the discussion in CS).

So, the questions are:
1. Which splitter works for whom?
2. Is there a consistent "master" splitter that works for everyone now?
3. What colour panties is Bev wearing?

Let's see what feedback we get from the other users, and I'll close this out accordingly.
1. DRs - checkboxes on left
2. Not yet, as far as I can tell.
3. I'm not falling for that one again, this isn't the Lounge.
Whatcoral47said ^
The people for which the script does not work are part of a marketing/usability study.   EE often selects a group at random, say those with even-numbered member IDs or whatever to experience different versions of the site code.    
My code works for the people who are seeing the site code that will eventually be put into full production.  If it stops working, then I'll fix it in a timely manner.
I've split the points, since Zvonko's also worked. Just neither predictably.
LOL Half-price.  
The fully-functional script that I provided can also be found here:
Some EE-useful JavaScripts for the IE Context Menu
https://www.experts-exchange.com/A_1682.html 
Hey! practise what you preach!!!

What's with the non splitting?  



;o)