I'm trying to understand how to use the JPopup Plugin to put a popup in Joomla articles and Virtuemart product descriptions. I have installed both the JPopup component and plug-in. I use the JCE WYSIWYG editor throughout the site. The Virtuemart product description reads thusly:
*********
Shea Butter is an all natural organic product that is an excellent moisturizer and has wonderful healing properties for the skin. Shea butter is the fatty acid extracted from the kernels of Vitellaria paradoxa (Sapotaceae), which is also known as Butyrospermum {boxplus}Link text{/boxplus} and is found in 19 countries across the African Shea belt from Senegal to Ethiopia. CSC (Certified Shea Company) Shea Butter is harvested and extracted from the Shea trees of Ghana.
*********
I want to put a popup on the word Butyrospermum that says:
*********
The Butyrospermum species is found across 19 countries across the African Savanna zone from Senegal to Ethiopia. Shea butter contains high levels of UV absorbing tri- esters, including cinnamic acid, tocopherols (vitamins A&E).
*********
I used the Jpopup component to create the HTML popup String and I get this:
*********
<!--Starting the jpopup code-->
<script language="javascript" type="text/javascript" src='http://csccomp.host.etimewebs.com/plugins/content/jpopup/script/external.js'></script>
<script src="http://csccomp.host.etimewebs.com/plugins/content/jpopup/script/prototype.js" type="text/javascript"></script>
<script src="http://csccomp.host.etimewebs.com/plugins/content/jpopup/script/effects.js" type="text/javascript"></script>
<script language="javascript" type="text/javascript">
function startPopUp1_1312430926(){
new Effect.Appear('pWinConfg1_1312430926', {duration:3, delay:1});
}
function endPopUp1_1312430926(){
new Effect.Fade('pWinConfg1_1312430926', {duration:3});
}
</script>
<div class="jpopup"
style="font-family:Arial, Verdana, Sans-Serif;
display:none;
font-size:11px;
position:absolute;
width:240px;
height:200px;
background-color:#FFFFFF;
top:40%;
left:60%;
border-style

olid;
border-width:1;
border-color:#FEF688;
padding:8px;
filter: progid

XImageTransform.Microsoft.Shadow(color=#666666,direction=135);"
id="pWinConfg1_1312430926">
<span id='jpopup_close' style="">
<a href="javascript:endPopUp1_1312430926();" >Close!</a>
<small><a href='http://www.joomlaplug.com'>JPopup!</a></small>
</span><br />
The Butyrospermum species is found across 19 countries across the African Savanna zone from Senegal to Ethiopia. Shea butter contains high levels of UV absorbing tri- esters, including cinnamic acid, tocopherols (vitamins A&E).
</div>
<script language="javascript" type="text/javascript">
if('no' != 'yes'

startPopUp1_1312430926();
</script>
<!--Ending the jpopup code-->
*********
What do I do to insert the code into the product description such that it will popup when someone scrolls over tPhe word Butyrospermum on the front end? Any help is appreciated.