function pageLoaded()
{
rollovers = true
if (false)
{
window.focus()
img = document.all.menuRow.all.tags("img")
l = img.length
for (i=0; i<l; i++) img[i].alt = ""
}
}

function goProfile()
{
if (document.all)
w = window.open("../profile/profileframe.htm","","location=1,toolbar=1,menubar=1,resizable=1,scrollbars=1,width=500,height=450")
else
w = window.open("../profile/profileframe.htm","","location=1,toolbar=1,menubar=1,resizable=1,scrollbars=1,width=502,height=455")
}

function goGuide()
{
	if (document.all || document.layers)
	{
		w = screen.width * .9
		h = screen.height * .9
		x = screen.width * .025
		y = screen.height * .025
		s = 'resizable=1,left=' + x + ',top=' + y + ',width=' + w + ',height=' + h
		w = window.open("../guide/guideframe.htm","",s)
	}
	else
		w = window.open("../guide/guideframe.htm","","resizable=1,width=630,height=450")
}

function jumpTo(u)
{
	h = window.location.href
	p = h.lastIndexOf("/")
	h = h.substring(0, p)
	p = h.lastIndexOf("/")
	window.location.href = h.substring(0, p+1) + u
}

function rollover(id)
{
if (ie && rollovers)
{
document.all["capDiv" + id].style.visibility = "visible"
document.all["exDiv" + id].style.visibility = "visible"
document.all["arrowDiv" + id].style.visibility = "visible"		
}
else if (nn && rollovers)
{
c = document.layers["menuDiv"].document
c.layers["capDiv" + id].visibility = "show"
c.layers["exDiv" + id].visibility = "show"
c.layers["arrowDiv" + id].visibility = "show"
}
}

function rollout(id)
{
if (ie && rollovers)
{
document.all["capDiv" + id].style.visibility = "hidden"
document.all["exDiv" + id].style.visibility = "hidden"
document.all["arrowDiv" + id].style.visibility = "hidden"		
}
else if (nn && rollovers)
{
c = document.layers["menuDiv"].document
c.layers["capDiv" + id].visibility = "hidden"
c.layers["exDiv" + id].visibility = "hidden"
c.layers["arrowDiv" + id].visibility = "hidden"
}
}
