<!-- ----------------------------------------------------------- -->
<!--	Copyright 1999-2001 JilJil Interactive Media			 -->
<!--	This code is protected by applicable international laws. -->
<!--	Unauthorised use is completely prohibited.				 -->
<!-- ----------------------------------------------------------- -->

// function : showMouseOver
// description : Change the color when mouse is over the action boxes

function showMouseOver(intDiv, clrFont, clrBorder)
{
	intDiv.style.borderColor = clrBorder;
	intDiv.style.color = clrFont;
}

// function : showMouseOut
// description : Change the color when mouse is out of the action boxes

function showMouseOut(intDiv, clrFont, clrBorder)
{
    // change the color
        
    intDiv.style.borderColor = clrBorder;
	intDiv.style.color = clrFont;    
}

function popup(strURL,strItem)
{
    var blnScrollBar, intHeight
    if (strItem == "invite")
    {
        intHeight = 530;
        blnScrollBar = "No"
    }
    if (strItem == "help")
    {
        intHeight = 530;
        blnScrollBar = "Yes"
    }       
    var newWin = open(strURL,'newwin',"toolbar=no,location=no,directories=no,status=no,scrollbars=" + blnScrollBar + ",resizable=yes,copyhistory=no,width=350,height=" + intHeight + "'");
    newWin.moveTo(0,0);
}
