// JScript source code
function loadrlist()
{
	loc=document.forms[1].Select1.value
	
	if ( !document.forms[1].Select1.selectedIndex )
	{
		document.getElementById('rlist').src="Blank.html"
		document.getElementById('tlist').src="Blank.html"
		document.getElementById('infoframe').src="Welcome.html"
	}
	else
	{
		document.getElementById('rlist').src=loc+".html"
		theval=document.getElementById(loc).innerText
		document.getElementById('loaded').innerText=theval
	}
}

function resetlists()
{
	document.forms[1].Select1.selectedIndex=0;
	document.getElementById('rlist').src="Blank.html"
	document.getElementById('tlist').src="Blank.html"
}

function loadtlist()
{
	loc=document.forms[0].Select1.value
	pardoc = window.parent.document

	if ( !document.forms[ 0 ].Select1.selectedIndex )
	{
		pardoc.getElementById('infoframe').src=loc+".html"
		pardoc.getElementById('tlist').src="Blank.html"
	}
	else
	{
		pardoc.getElementById('tlist').src=loc+".html"
		theval=document.getElementById(loc).innerText
		pardoc.getElementById('loaded').innerText=theval
	}
}

function loadinfo()
{
	loc=document.forms[0].Select1.value
	pardoc = window.parent.document
	
	if ( !document.forms[ 0 ].Select1.selectedIndex )
	{
		pardoc.getElementById('infoframe').src=loc+".html"
	}
	else
	{
		pardoc.getElementById('infoframe').src=loc+".html"
		theval=document.getElementById(loc).innerHTML
		pardoc.getElementById('loaded').innerHTML=theval
	}
}

function showdate()
{
	document.getElementById( 'Date' ).innerHTML="Last Modified: " + document.lastModified
}

function displaytitle()
{
	pardoc = window.parent.document
	pardoc.getElementById('loaded').innerHTML=document.getElementById('atitle').innerHTML
}

function dispsqcover( pic )
{
	window.open(pic, 'ZiggyPopup','status=0,resizable=0,width=520,height=520',true)
}

function disptallcover( pic )
{
	window.open( pic, 'ZiggyPopupT','status=0,resizable=0,width=280,height=390',true)
}

function dispwidecover( pic )
{
	window.open( pic, 'ZiggyPopupW','status=0,resizable=0,width=390,height=280',true)
}