SharePoint Blogs / SharePoint University
SharePoint Blogs and SharePoint University - all in one place!
Need SharePoint Training? Attend a SharePoint Bootcamp!

Please delete cookies related to sharepointblogs.com and sharepointu.com to resolve login issues!

MOSS2007 – JavaScript Item Menus Part 3 (Real World)

One of the things I have been asked recently has been to do with changing the “Email Link To” menu item. Sometimes this link works, sometimes it doesn’t. Before we can look at changing it let’s take a look at the code that is used to create this link. The code block can be found within the “AddSendSubMenu” function within the “CORE.JS” file. Here is the code block in full:

Now let’s step through it line by line. The first line:

This line is used to check that the current user has the correct permissions, i.e. Permission to the document or item. Next we simply populate the local variable “strDisplayText” with the globally declared variable from the top of the “CORE.JS”.

Now we get to the interesting bits. Each list and library when viewed within the standard pages such as “AllItems.aspx” can be accessed via JavaScript by using some built in functions. One of these is “GetAttributeFromItemTable”. This function is actually called from the “INIT.JS” file; along with a few more that you will see further down the code. This code line is connecting to the table and grabbing the “URL”, which in reality is the direct link to the document or item.

Once we have the actual link then we find the root URL (the server URL) using a built in property of the list item which is referred to as CTX.

Once we have the root URL it is then chopped up slightly, so we have the length, and location of the relevant slashes. The local variable “fileUrl” is also declared at this point, this is used later on.  Now we populate the local variable by concatenating the root URL and the variable called “currentItemUrl” which is actually populated previously from the item table.

Now we have the new variable “fileUrl” populated and ready to use, the next variable to get populated is the “serverFileRedir”. This is used to hold any redirection page that is needed as part of the menu item link.

Now that we have all the variables populated the next few lines of code simply build the menu item. The “strAction” variable contains the action that will happen when the relevant menu item is pressed. In this case it calls another function that exists within the “INIT.JS” file. This function simply encodes the relevant URL and does a “window.location” redirect. Notice also in the code we pass auto populate the body of the email with the newly populated variable “fileUrl”.

Next an image is assigned to the menu item. The images used for this are stored here:

C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\12\TEMPLATE\IMAGES

Now we put it all together using a built in function called “CAMOpt” which exists within the “CORE.JS”. The syntax for this is shown below but let me explain it here:

CAMOpt({menu or parent menu item}, {display name variable}, {code action variable}, {image variable})

Notice that in this example the first parameter is set as “sm”. This is the ID of the “Send To” menu item on the main item menu. Some of the functions refer to the variable called “m”. This is the main menu itself and gets populated from the function called “CreateMenuEx”. In one of the last posts we looked at creating nested menun items. To achieve this we made use of this method. Last but not least it assigns a global ID to the menun item. Thisn is great as you can then create custom CSS styles that map direct to the menu item.

So now we have stepped through the code let’s modify it slightly. One of the errors you sometimes get is caused by the fact that the JavaScript URL Encodes the path before it adds it to the body of the email. An example of this is when the main server URL gets encoded also and makes the link unusable from an email client but works in the browser.

http://intranet%2Elabs%2Elocal/StaffDirectory/Team%20Documents/DemoDoc1.docx

By modifying the code we could make sure that the first part of the URL does not get encoded. The URL would then look as below:

http://intranet.labs.local/StaffDirectory/Team%20Documents/DemoDoc1.docx

To make this work we need to add the following line(s) into the code:

Notice that in this line we are calling a built in function called “UnescapeProperly” around the “httpRootWithSlash” variable and then we are using the “EscapeProperly” around the “currentItemUrl”, both of these functions are called from the “INIT.JS”. Both of these functions simply replace any spaces or special characters with their HTML (ASCII) equivalent. Next we need to tweak the link that is rendered into the body of the email. The first variable “NewEmailLength” simply grabs the item table value called “DREF”. This is used to get the relative location of the item or document. The second variable takes the current item URL and substrings the length from the previous variable which leaves us with the actual name of the file plus the extension. The idea behind this was so the subject would read: “Emailing Document Link: {Document Name}“. The “NewEmailBody” variable is populated by the variable we created earlier called “fileUrlNonEscaped”.

You will also notice that the action variable is calling a function called “CreateMailMessage”. This is a simple function that just does a “window.location” redirect for the email. The function is:

Once it all together when you access the link the email now renders as:

As you can see by using lots of the inbuilt functions you are able to change the way that the default menu items or new menu items work within MOSS2007. As a side not I have just noticed that fellow MVP Ishai Sagi has posted his findings on what all the variables are used for from within the “itemTable”. Check his post here:

http://www.sharepoint-tips.com/2007/05/meanings-of-variables-in-context-menus.html

Hope this helps. Wink

Posted 05-30-2007 9:18 PM by helloitsliam

Comments

Jens wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-27-2007 1:54 PM

Hi Liam,

two remarks:

1. Can't see any picture (image), my fault?

2. Do I have the possibility to find some older threads? I'm looking for the "MOSS2007 - Look and Feel" and "MOSS2007 – Rebuild Corporate Website" series.

Can you help, please?

Thanks in advance,

Jens

Mark Wilson wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 08-28-2007 3:55 PM

This involves changing one of the shipping files - have you found a way to update these menus without directly modifying core.js? I suppose overriding that particular function in another js file is the way to go.....

mozier wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 09-05-2007 4:25 AM

Can't see the pictures...

mozier wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 09-05-2007 6:21 AM

For all those who haven't found it yet, and can't see the pictures - www.helloitsliam.com/.../moss2007-–-javascript-item-menus-part-1-real-world.aspx

Oxy wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 12-03-2007 4:37 AM

Hey, still don't find the pictures on your blogs, I would need the picture of the last part, the picture of the adapted encode code.

Where can I find these?

Thx

Arpad wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 12-04-2007 4:39 AM

Moziers's link is broken, no pictures.

sugengnn wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 01-24-2008 9:15 PM

images don't seem to appear

maulee wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-17-2008 1:37 PM

No pictures.

acai berry cleanse wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 12-01-2008 9:38 AM

lol

Lida Dai Dai Hua Jiao Nang Seo Yarışması wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 12-03-2008 5:23 AM

<a href="daihuajiaonangyarismasi.blogcu.com/">Lida Dai Dai Hua Jiao Nang Seo Yarışması</a>

thanks very mch for me its great

<a href="lidadaihuajiaonangseoyarismasi.blogspot.com/">Lida Dai Dai Hua Jiao Nang Seo Yarışması</a>

sigortalar wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 12-17-2008 5:36 AM
evden eve nakliyat wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 12-23-2008 7:13 AM

hope you get this note - i'm sure you get millions already about your art - but i bought a paperback a few days ago called Snowy Night with a Stranger with three stories from three authors each with their own stories.

Story 2 is called when Sparks Fly by Sabrina Jeffries, and i'm curious if you're the Ursala Vernon the story is dedicated to?

--

I did not come to bring peace, but a sword.

<a href="http://www.ekintas.com" title="evden eve nakliyat, evden eve" target="_blank">Evden Eve Nakliyat</a>-<a href="http://www.ekintasnakliyat.com" title="evden eve nakliyat, evden eve" target="_blank">Evden Eve Nakliyat</a>

mersin web tasarım wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 12-27-2008 2:05 AM

thanks

travesti wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 12-30-2008 8:12 AM

great thanx

tecrms wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 01-12-2009 8:01 AM

Sucks that one cant see the pictures

tubrj wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 05-06-2009 8:40 PM

<a href=" forum.reverbnation.com/.../3837 ">cheapest tamiflu</a> pqbhtb

lburo wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 05-07-2009 6:48 AM

<a href=" forums.layertennis.com/.../811 ">stunning teens photos</a> zpipnk <a href=" forum.reverbnation.com/.../4114 ">teens with hot asses</a> gxyd

glpjk wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 05-15-2009 1:12 PM

<a href=" forum.reverbnation.com/.../4124 ">gay teen hardons</a> oojo <a href=" forums.layertennis.com/.../810 ">teen girls stripping videos</a> ifut

Pharma148 wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 05-23-2009 12:07 PM

Very nice site! <a href="aixopey.com/.../1.html">cheap viagra</a>

Pharmc15 wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 05-23-2009 12:08 PM

Very nice site!  [url=aixopey.com/.../2.html]cheap cialis[/url]

Pharmg105 wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 05-23-2009 12:08 PM

Very nice site! cheap cialis aixopey.com/.../4.html

Pharme408 wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 05-23-2009 12:08 PM

Very nice site!

Pharme659 wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 05-23-2009 12:12 PM

Very nice site! <a href="aixopey.com/.../1.html">cheap viagra</a>

Pharmk634 wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 05-23-2009 12:12 PM

Very nice site!  [url=aixopey.com/.../2.html]cheap cialis[/url]

Pharmg924 wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 05-23-2009 12:12 PM

Very nice site! cheap cialis aixopey.com/.../4.html

Pharmc734 wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 05-23-2009 12:12 PM

Very nice site!

Pharme330 wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 05-26-2009 10:29 AM

Very nice site! <a href="ypxaieo.com/.../1.html">cheap viagra</a>

Pharmc361 wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 05-26-2009 10:29 AM

Very nice site!  [url=ypxaieo.com/.../2.html]cheap cialis[/url]

PuTGSiEUx wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 05-28-2009 8:47 PM

doors6.txt;5;5

Pharmd728 wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 05-29-2009 5:40 PM

Very nice site! <a href="opeyixa.com/.../1.html">cheap viagra</a>

Pharmk725 wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 05-29-2009 5:40 PM

Very nice site! cheap cialis opeyixa.com/.../4.html

Pharmd582 wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 05-29-2009 5:41 PM

Very nice site! <a href="opeyixa.com/.../1.html">cheap viagra</a>

Pharmg617 wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 05-29-2009 5:41 PM

Very nice site!  [url=opeyixa.com/.../2.html]cheap cialis[/url]

Pharmk922 wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-02-2009 7:30 PM

Very nice site! <a href="apxoiey.com/.../1.html">cheap viagra</a>

Pharme276 wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-02-2009 7:31 PM

Very nice site!  [url=apxoiey.com/.../2.html]cheap cialis[/url]

Pharmb510 wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-02-2009 7:31 PM

Very nice site! cheap cialis apxoiey.com/.../4.html

Pharmc443 wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-02-2009 7:31 PM

Very nice site!

transparent bikini wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-10-2009 1:44 PM

it is very nice to have Bikini transparent

gas powered scooters wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-10-2009 8:23 PM

Help me to find gas powered scooters

www.world66.com/.../gas_powered_scoote

cjlsp wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-10-2009 11:55 PM

<a href=" forums.prototype-ui.com/.../302 ">pre teens</a> nfwes <a href=" forums.planetargon.com/.../207 ">bbs loli pthc</a> itb

vanessa hudgens sex tape wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-11-2009 11:17 AM

real site best vanessa hudgens sex tape

ybupc wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-11-2009 1:06 PM

<a href=" www.epicweapons.com/.../101320 ">ampland al4</a> ixsqn <a href=" www.epicweapons.com/.../101321 ">str8up and videos</a> pvgqdb

weyin wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-11-2009 2:38 PM

kglqj <a href=" forums.prototype-ui.com/.../309 ">child underware models</a> aqc

whnpm wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-11-2009 6:08 PM

pzisnn <a href=" forums.planetargon.com/.../205 ">little golden baby</a> ekf

aroqc wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-11-2009 6:29 PM

<a href=" forums.recoil.org/.../363 ">pre teen videos</a> mgptow <a href=" forums.prototype-ui.com/.../313 ">child models nn</a> kin

kristin davis sex tape wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-12-2009 12:45 AM

Now kristin davis sex tape right here

kkhhj wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-12-2009 4:23 AM

jyna <a href=" forums.prototype-ui.com/.../286 ">*** bbs boards</a> upxpx

vgxnp wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-12-2009 3:10 PM

<a href=" forums.recoil.org/.../359 ">underage girl nudist</a> xqyp <a href=" forums.planetargon.com/.../217 ">lolita *** pedo bbs pics</a> gfubt

ukafn wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-12-2009 11:50 PM

kkmd <a href=" forums.recoil.org/.../386 ">young loli pics</a> gbqswv

uxrws wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-13-2009 3:57 AM

<a href=" forums.recoil.org/.../361 ">lolita videos</a> yqwwar <a href=" forums.prototype-ui.com/.../276 ">lolita boys</a> jzdel

mlxhe wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-13-2009 6:56 AM

<a href=" www.epicweapons.com/.../101316 ">halimbawa ng maikling kuwento ng tagumpay</a> tuumdg <a href=" www.epicweapons.com/.../101317 ">tube8 similar sites</a> scxgqu

tnpzj wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-13-2009 8:01 AM

blkg <a href=" forums.prototype-ui.com/.../303 ">black *** girls</a> nbej

vmalq wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-13-2009 12:20 PM

<a href=" forums.recoil.org/.../350 ">pre loli photo galleries</a> pgptx

oxcqc wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-15-2009 4:00 AM

<a href=" http://www.fuel.tv/Gunnars73 ">bdsm sadist</a> anltwn <a href=" http://www.fuel.tv/Honidanda41 ">bdsm dating websites</a> iza

ihhfm wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-15-2009 6:42 AM

<a href=" http://www.fuel.tv/Flcn85 ">free bdsm game</a> liiyq <a href=" http://www.fuel.tv/Elfto19 ">bdsm clippings</a> ikxj

mwwuf wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-15-2009 9:43 AM

<a href=" http://www.fuel.tv/Gnorog215 ">bdsm menstrual cycle</a> bjj <a href=" http://www.fuel.tv/Golodh180 ">free video bdsm sites</a> bfd

jrauy wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-15-2009 12:29 PM

<a href=" http://www.fuel.tv/Gunnars729 ">bdsm cigarette burn</a> ucsk <a href=" http://www.fuel.tv/Hulinut485 ">dallas bdsm collar</a> foh

zsxoj wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-15-2009 3:15 PM

<a href=" www.fuel.tv/Elefantti405 ">bdsm photos</a> fbkyo <a href=" http://www.fuel.tv/Fillzork440 ">free bdsm pony video</a> lpjaxd

zsxoj wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-15-2009 3:15 PM

<a href=" www.fuel.tv/Elefantti405 ">bdsm photos</a> fbkyo <a href=" http://www.fuel.tv/Fillzork440 ">free bdsm pony video</a> lpjaxd

tytkk wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-15-2009 5:52 PM

<a href=" http://www.fuel.tv/helpgr215 ">bdsm oregon personal</a> vfstx <a href=" http://www.fuel.tv/Elena856 ">real *** bdsm</a> bnohdc

hksuh wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-15-2009 8:29 PM

<a href=" www.fuel.tv/Fortehwin180 ">anime bdsm free picture</a> orjjq <a href=" http://www.fuel.tv/Kennedy602 ">humbler bdsm</a> izeoyg

yaffe wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-16-2009 4:41 AM

<a href=" www.fuel.tv/Sylvester976 ">gay male models latin bdsm</a> rqpwsi <a href=" http://www.fuel.tv/Damian342 ">bdsm deny bathroom</a> cddx

yjhsi wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-16-2009 5:40 AM

<a href=" forums.prototype-ui.com/.../292 ">pedo files</a> aqrr <a href=" forum.gina.alaska.edu/.../257 ">kiddies naked</a> svzj

oeilk wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-16-2009 7:28 AM

<a href=" http://www.fuel.tv/Caster215 ">teen girls in bondage bdsm</a> ifjk <a href=" http://www.fuel.tv/Hayden53 ">celebrity bdsm fakes</a> vwpjpt

gkiib wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-16-2009 10:12 AM

<a href=" http://www.fuel.tv/Hudson117 ">crissy moran bdsm</a> bcl <a href=" http://www.fuel.tv/Lorimar469 ">bdsm toilet</a> dzpgz

twfdj wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-16-2009 9:21 PM

<a href=" groups.google.com/.../b7eecb62e277588a ">extreme bdsm</a> dtlgm

fllfw wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-16-2009 10:23 PM

<a href=" groups.google.com/.../62c7cbbbe56952c2 ">bdsm techniques</a> vzsz

mirza wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-17-2009 1:44 AM

<a href=" groups.google.com/.../e8cc8000acf69372 ">bdsm galleries</a> svwnrz

hlyia wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-17-2009 12:23 PM

<a href=" community.thoughtworks.com/.../profile ">bdsm whipping video</a> cfevms <a href=" community.thoughtworks.com/.../profile ">bdsm videos and dvd's</a> tewae

jeremia wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-17-2009 12:27 PM

cYYgy0 bjdBa51p9Nnfla94Mql

lrbbr wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-17-2009 2:55 PM

<a href=" community.thoughtworks.com/.../profile ">bdsm forum log in videos</a> zhyxql <a href=" community.thoughtworks.com/.../profile ">bdsm pictures and videos</a> vkbvp

rivmv wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-17-2009 5:23 PM

<a href=" community.thoughtworks.com/.../profile ">free bdsm pony videos</a> dnc <a href=" community.thoughtworks.com/.../profile ">xxx hardcore bdsm quicktime videos</a> agoogh

ppdez wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-17-2009 7:53 PM

<a href=" community.thoughtworks.com/.../profile ">bdsm fiction non video</a> qeruf <a href=" community.thoughtworks.com/.../profile ">adulti bdsm video</a> yyo

hkkdm wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-17-2009 10:20 PM

<a href=" community.thoughtworks.com/.../profile ">rapidshare bdsm video</a> tpawj <a href=" community.thoughtworks.com/.../profile ">amateur bdsm free photo video</a> whn

fbapb wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-18-2009 11:41 AM

<a href=" community.thoughtworks.com/.../profile ">free video bdsm sites</a> nxo <a href=" community.thoughtworks.com/.../profile ">butch bdsm video</a> jsridw

ycsrv wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-18-2009 4:55 PM

<a href=" community.thoughtworks.com/.../profile ">bdsm *** torture tgp video</a> sduns <a href=" community.thoughtworks.com/.../profile ">free gay bdsm videos</a> cqemr

cutwb wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-18-2009 7:35 PM

<a href=" community.thoughtworks.com/.../profile ">video bdsm</a> zho <a href=" community.thoughtworks.com/.../profile ">free x rated bdsm videos</a> fmcdk

bncqi wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-19-2009 4:37 AM

<a href=" community.thoughtworks.com/.../profile ">*** photo personals</a> uul

stphx wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-19-2009 8:38 AM

<a href=" community.thoughtworks.com/.../profile ">*** fisting photos</a> iybms

kovcy wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-19-2009 1:26 PM

<a href=" community.thoughtworks.com/.../profile ">*** video sample</a> xufq

sbida wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-19-2009 3:29 PM

<a href=" community.thoughtworks.com/.../profile ">*** gyno exam videos</a> eboiu

uanqm wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-19-2009 5:33 PM

<a href=" community.thoughtworks.com/.../profile ">*** scissor grind video</a> iypap

ycgfb wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-19-2009 7:37 PM

<a href=" community.thoughtworks.com/.../profile ">*** photos hugging</a> ggab

mpnxl wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-19-2009 9:44 PM

<a href=" community.thoughtworks.com/.../profile ">*** licking porn pic video ***</a> dxj

bjiyx wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-19-2009 11:14 PM

<a href=" community.thoughtworks.com/.../profile ">candid preteens</a> hfik <a href=" community.thoughtworks.com/.../profile ">*** model pics</a> ats

wezrx wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-19-2009 11:54 PM

<a href=" community.thoughtworks.com/.../profile ">*** video streams</a> wlsuj

ummzn wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-20-2009 2:09 AM

<a href=" community.thoughtworks.com/.../profile ">britney spears *** video tape</a> katb

dgsxu wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-20-2009 6:16 AM

<a href=" community.thoughtworks.com/.../profile ">preteens lolita</a> jqq <a href=" community.thoughtworks.com/.../profile ">lolita *** pics</a> ynwy

excci wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-20-2009 2:13 PM

<a href=" community.thoughtworks.com/.../profile ">nymphets *** art</a> vguh <a href=" community.thoughtworks.com/.../profile ">*** free vids</a> vqf

ehfdf wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-20-2009 9:08 PM

<a href=" community.thoughtworks.com/.../profile ">nuked preteens</a> lzakp <a href=" community.thoughtworks.com/.../profile ">pantyhose ***</a> pfhkg

owhol wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-21-2009 3:59 AM

<a href=" community.thoughtworks.com/.../profile ">incest story ***</a> aqbri <a href=" community.thoughtworks.com/.../profile ">ls magazine *** dark portal</a> tjwtb

uzsmb wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-22-2009 3:24 AM

<a href=" community.thoughtworks.com/.../profile ">*** little model girls</a> cklrbi <a href=" community.thoughtworks.com/.../profile ">tgp ***</a> qxls

nataly wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-22-2009 1:53 PM

WDYrSG ghUnxCczpf72ndOqi20g

nataly wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-22-2009 1:54 PM

WDYrSG ghUnxCczpf72ndOqi20g

margaret wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-22-2009 3:11 PM

6Gsnq5 ega7Kl0dnDduqp6s2bnp1o

wdef wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-23-2009 2:00 AM

wefrg <a href=" http://ecotect.com/user/5623 ">wwww tiava</a> egrehrjy <a href=" http://ecotect.com/user/5624 ">thumbzilla archive</a>

efsr wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-23-2009 2:01 AM

efrgtg <a href=" http://ecotect.com/user/5621 ">you tube 8 com</a> fgregth <a href=" http://ecotect.com/user/5622 ">www tube8 conm</a>

wadefr wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-23-2009 3:40 PM

wdefsrgt <a href=" http://ecotect.com/user/5638 ">red tube photo</a> aefwrghtn <a href=" http://ecotect.com/user/5639 ">redtube ***</a>

wadesfr wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-24-2009 12:21 AM

efgb <a href=" http://ecotect.com/user/5650 ">pinkworld hand</a> rgthynh <a href=" http://ecotect.com/user/5651 ">pichunter com latest</a>

gvbjgvvhc wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-24-2009 4:36 AM

wdefdrgt <a href=" http://ecotect.com/user/5659 ">kaktuz adult</a> ergthny <a href=" http://ecotect.com/user/5661 ">imagefap logs</a>

wefrg wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-24-2009 4:42 AM

efgefsr <a href=" http://ecotect.com/user/5656 ">madthumbs co</a> wfergthn <a href=" http://ecotect.com/user/5658 ">literotica com ***</a>

waer wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-24-2009 8:55 AM

efrgth <a href=" http://ecotect.com/user/5666 ">star eskimo tube</a> efgrthny <a href=" http://ecotect.com/user/5667 ">erotik women</a>

Snoopy wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-25-2009 9:23 AM

good material thanks <a href=" www.talkas.lv ">50 art model photography ***</a>  zupxbq <a href=" www.talkas.lv ">*** art links</a>  865

defsr wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-26-2009 3:26 AM

desfrv <a href=" community.michaeljackson.com/.../xhamster ">xhamster website</a> efrgth <a href=" community.michaeljackson.com/.../wifelovers ">w wifelovers</a>

waesfr wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-26-2009 7:48 AM

wdesfdr <a href=" community.michaeljackson.com/.../tube-8 ">tube 8 ***</a> thyje3rfg <a href=" community.michaeljackson.com/.../tube8 ">tube8 similiar</a>

efrg wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-26-2009 4:42 PM

wdesfdr <a href=" community.michaeljackson.com/.../rude ">rudeplay</a> wefrgd <a href=" community.michaeljackson.com/.../ro89 ">ww ro89</a>

Pharmg397 wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-28-2009 2:10 PM

Very nice site! <a href="opeyixa.com/.../1.html">cheap viagra</a>

Pharmg645 wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-28-2009 2:10 PM

Very nice site!  [url=opeyixa.com/.../2.html]cheap cialis[/url]

Pharmd901 wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-28-2009 2:10 PM

Very nice site! cheap cialis opeyixa.com/.../4.html

Pharme143 wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-28-2009 2:10 PM

Very nice site!

Pharmb65 wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-30-2009 6:42 AM

Very nice site!  [url=opeyixa.com/.../2.html]cheap cialis[/url]

Pharmd324 wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-30-2009 6:42 AM

Very nice site! cheap cialis opeyixa.com/.../4.html

Pharme530 wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 06-30-2009 6:42 AM

Very nice site!

wae wrote re: MOSS2007 – JavaScript Item Menus Part 3 (Real World)
on 07-02-2009 7:38 AM

waefsrgf <a href=" http://ecotect.com/user/5760 ">teen girls in panties</a> wfegrdthbg <a href=" http://ecotect.com/user/5761 ">lauren conrad nude</a>

Add a Comment

(required)  
(optional)
(required)  
Remember Me?
Need SharePoint Training? Attend a SharePoint Bootcamp!
Posts (c) their respective authors. Everything else (c) 2009 SharePoint Experts, Inc.