
	screenWidth = screen.availWidth;
	screenHeight = screen.availHeight;
	
	/* set the default popup window size */
	var popupWidth = 490;
	var popupHeight = 320;

	/* set the upper left hand corner of the popup window */
	var popupLeft = (screenWidth-popupWidth)/2;
	var popupTop = (screenHeight-popupHeight)/2;
	
	function openwindow(theUrl) 
	{	
		var theWindow = window.open('../../../disclaimer/default.cfm?theUrl=' + theUrl,"Leaving","directories=no,location=no,menubar=no,resizable=no,status=no,toolbar=no,scrollbars=no,width=" + popupWidth + ",height=" + popupHeight + ",top=" + popupTop + ",left=" + popupLeft);	
		theWindow.focus();
	}
	
	function relocatewindow(theSelect) 
	{	
		    window.location = theSelect.options[theSelect.selectedIndex].value;	
	}
	
	function go(theObject) 
{
window.location=document.getElementsByName(theObject)[0].value;
}

window.onload = init;

function init() {
    stripeAllTables();
//	stripeTableById('table1');
	}

function stripeTable(t) {
	var i, odd = true;
	for (i=0; i<t.rows.length; i++) {
		t.rows[i].className += odd ? ' odd' : ' even';
		odd = !odd;
		}
	}
function stripeTableById(id) {
	var t = document.getElementById(id);
	if (t) stripeTable(t);
	}

function stripeAllTables() {
	var t = document.getElementsByTagName('TABLE');
	for (var i=0; i<t.length; i++) stripeTable(t[i])
	}