// bCentered: To write special width, the caller needs to center me
function showReadingBox(bCentered)
{
var sWidth

return ""

if(bCentered)
{
	sWidth = "600"
}
else
{
	sWidth = "100%"
}


var sHTML = "<iframe src='ifrm_ReadingBox.htm' frameborder=0 scrolling=no" + 
" width=" + sWidth + " height=130></iframe>\n"

document.write(sHTML)
}
