function into(oObj)
{
	fg=oObj.style.color;
	bg=oObj.style.background;
//	oObj.style.cursor="hand";
	oObj.style.color="blue";
	oObj.style.background="#EEEEEE";
}

function outof(oObj)
{

//	oObj.style.cursor="default";
	oObj.style.color="black";
	oObj.style.background="#FFFFFF";
}

function popUp(URL) {
eval("bio" + " = window.open(URL, '" + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=650,height=650,left=400,top=22');");
}
