function textSize(whatSize)  {

if (whatSize == "larger" && size == 30) {
window.open("../pages/textSizeAlertLarge.html","alertWin","width=275, height=87", "toolbar=no, scrollbars=no, resizable=no, location=no, menubar=no, width=275, height=87")
}

if (whatSize == "larger" && size < 30) {
size = size +1
}

if (whatSize == "smaller" && size == 8) {
window.open("../pages/textSizeAlertSmall.html","alertWin","toolbar=no, scrollbars=no, resizable=no, location=no, menubar=no, width=275, height=87")
}


if (whatSize == "smaller" && size > 8) {
size = size -1
}

vSize = size + "pt"

//alert(vSize + " -- " + size)

parent.main.document.getElementById("mainCopy").style.fontSize = vSize
//parent.main.document.getElementById("rightCopy").style.fontSize = vSize
//parent.main.document.getElementById("tCopy").style.fontSize = vSize

//parent.main.document.getElementById("pdfCopy").style.fontSize = vSize

var the_cookie = "setSize=" + escape("textSize:" + size +":");
parent.nav.document.all.ff.textSize.value = size
document.cookie = the_cookie;
 
}
