function initPage()
{
	var f = document.getElementById("resizeplus");
	if (f)
	{
		var links = f.getElementsByTagName("img");
		for (var i = 0; i < links.length; i++)
		{
			links[i].onclick = function ()
			{
				if (document.body.style.fontSize != this.className){
					this.className = document.body.style.fontSize;
				
				}
				switch (this.className) {
					case "75%" : this.className = "87%";	break;
					case "87%" : this.className = "100%";	break;
					case "100%" : this.className = "113%";	break;
					case "113%" : this.className = "125%";	break;
					case "125%" : this.className = "135%";	break;
					}
				document.body.style.fontSize = this.className;
				return false;
			}
		}
	}
	var m = document.getElementById("resizeminus");
	if (m)
	{
		var links = m.getElementsByTagName("img");
		for (var i = 0; i < links.length; i++)
		{
			links[i].onclick = function ()
			{
				if (document.body.style.fontSize != this.className){
					this.className = document.body.style.fontSize;
				}
				switch (this.className) {
					case "135%" : this.className = "125%";	break;
					case "125%" : this.className = "113%";	break;
					case "113%" : this.className = "100%";	break;
					case "100%" : this.className = "87%";	break;
					case "87%" : this.className = "75%";	break;
					}
				document.body.style.fontSize = this.className;
				return false;
			}
		}
	}
}

if (window.addEventListener)
	window.addEventListener("load", initPage, false);
else if (window.attachEvent)
	window.attachEvent("onload", initPage);


function openMe()
{
window.open("http://webcat.liveoakpl.org/uhtbin/cgisirsi/x/0/0/49","newwindow","toolbar=no,location=no,directories=no,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=792,height=594,left=1,top=1")
}




function openMe2()
{
window.open("http://www.liveoakpl.org/about/my-account.php","newwindow","toolbar=no,location=no,directories=no,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=792,height=594,left=1,top=1")
}

function openMe3()
{
window.open("","newwindow","toolbar=no,location=no,directories=no,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=792,height=594,left=1,top=1")
}

function openMe4()
{
window.open("http://webcat.liveoakpl.org/uhtbin/cgisirsi/0/0/0/57/49?user_id=WEBNOCON&password=NOCON","newwindow","toolbar=no,location=no,directories=no,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=792,height=594,left=1,top=1")
}

http://webcat.liveoakpl.org/uhtbin/cgisirsi/0/0/0/38/0/POWER_SEARCH

 


function disableclick(e) 
{
var clickmessage="Images are copyrighted."
if (document.all) {
if (event.button==2||event.button==3) {
if (event.srcElement.tagName=="IMG"){
alert(clickmessage);
return false;
}
}
}
else if (document.layers) {
if (e.which == 3) {
alert(clickmessage);
return false;
}
}
else if (document.getElementById){
if (e.which==3&&e.target.tagName=="IMG"){
alert(clickmessage)
return false
}
}
}

function associateimages(){
for(i=0;i<document.images.length;i++)
document.images[i].onmousedown=disableclick;
}

if (document.all)
document.onmousedown=disableclick
else if (document.getElementById)
document.onmouseup=disableclick
else if (document.layers)
associateimages()

