
/* - popup.js - */
/* Click Fix
*
* Uses qtobject.js
*
*      myQTObject = new QTObject("path/to/mov.mov", "movid", "width", "height");
*      myQTObject.altTxt = "Upgrade your Quicktime Player!";    // optional
*
*  myQTObject.addParam("controller", "false");              // optional
*      myQTObject.write();
*
*/
function setupText(hoverItem){
        hp = document.getElementById("popup");
        hp.style.padding="0";
        hp.style.position="absolute";
        hp.style.display="none";
        hp.style.background="transparent 0px 0px no-repeat";
                hp.style.margin=0;
          hp.style.top="0px";
          hp.style.left="70%";
hp.style.width="200px";
          hp.style.fontFamily="arial";
          hp.style.fontSize="12px";
        hp.style.backgroundColor="#B0C4DE";
        hp.style.color="#000";
        hp.style.border="1px solid #000";
        hp.style.padding="5px";
        hp.style.visibility="visible";
        hp.style.zIndex="100";
};
var description_array = new Array("</center>Related Sites:<br>"+
        "<a href='http://www.morecivilsocietyroundtable.com.au/'>More Civil Society Netowrk</a><br>"+
        "<a href='http://www.wettank.com.au/'>Women's Equity Think Tank</a><br>"+
        "<a href='http://www.thedinnerparty.com/'>The Dinner Party</a><br>"+
        "For descriptions of the role of each site, see below."
        );

function DHTMLText(id) {
 hp=document.getElementById("popup");
  hp.innerHTML=description_array[id];
hp.style.visibility="visible";

hp.style.display="block";
};
function DHTMLnoText() {
hp = document.getElementById("popup");
hp.innerHTML ="";
hp.style.display="none";
};



