/****
* Author: Will Steinmetz
* Date: 03/13/08
* File: psorg-evolved06.js
****/
window.onload = function()
{
	var blueBtn = new Image(120, 35);
	blueBtn.src = 'images/blue_btn.jpg';
}

function menuOver(id)
{
	document.getElementById(id).className = 'blueBtn';
}

function menuOut(id)
{
	document.getElementById(id).className = 'silverBtn';
}

function loc(loc)
{
	window.location = loc;
}

function newWin(loc)
{
	var newWindow = window.open(loc, 'newWin', 'resizable=yes,toolbar=yes,location=yes,scrollbars=yes');
}