pop = new imagePop()
pop.setTitle("Kianna Lynne Mitchell")

function scrollSetup() { 
	bsbObj = new bugScrollBar(	document.getElementById("bioDiv")	// append to this object
								,310								// scrollBar base width
								,340								// scrollBar base height 
								,"gfx/kianna-upNormal.gif"			// up button normal image
								,"gfx/kianna-upHover.gif"			// up button hover image
								,"gfx/kianna-upDown.gif"			// up button down image
								,"gfx/kianna-downNormal.gif"		// down button normal image
								,"gfx/kianna-downHover.gif"			// down button hover image
								,"gfx/kianna-downDown.gif"			// down button down image
								,"gfx/kianna-dragBase.gif"			// drag base image
								,"gfx/kianna-dragNormal.gif"		// drag button normal image
								,"gfx/kianna-dragHover.gif"			// drag button hover image
								,"gfx/kianna-dragDown.gif"			// drag button down image
								,15									// all button image widths
								,16									// up & down image heights
								,16									// top padding
								,16									// bottom padding
								,50									// drag button image height
								,20									// gap between content and scrollbar
	)
	clonedRef = document.getElementById("bioContent").cloneNode(true)
	bsbObj.setClonedHTML( clonedRef )
}

// This code performs tooltip boxes for help text or clarifications based on a mouseover.
function toolTip(refId,x,y,v) {
	try {
		refObj = document.getElementById(refId)
		refObj.style.top = y+"px"
		refObj.style.left = x+"px"
		refObj.style.visibility = v
	} catch(err) { 
		alert("Error in main page::toolTip: "+err) 
	}
}

