﻿<!--

//COLLAPSING TEXT FUNCTIONS
//if the browser doesn't support this, it will only display the text instead of allowing it to collapse and expand
if (document.getElementById)
{
 document.writeln('<style type="text/css"><!--');
 document.writeln('.texter {display:none}');
 document.writeln('//--></style>');
 }

function openClose(theID)
{
	var doc = document.getElementById(theID).style;
 	if (doc.display == "block")
 	{
		doc.display = "none"
	}
 	else
	{
		doc.display = "block"
	}
 }
//END COLLAPSING TEXT FUNCTIONS

function pop(visible)
{
	document.getElementById('pop').className = visible;
}

function hide(id)
{
	document.getElementById(id).className = 'hide';
}

function show(id)
{
	document.getElementById(id).className = 'show';
}

//PopUp in another window
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=325,height=325,left = 362,top = 84');");
}

-->
</script>

<style type="text/css">
<!--
.pop
{
	border-style: solid;
	border-color: #cccccc;
	border-width: 1px;
	
	padding: 15px;
	
	background-color: #ffffff;
	
	position: absolute;
	top: 100px;
	left: 350px;
	zindex: 10;
}

.popbig
{
	border-style: solid;
	border-color: #cccccc;
	border-width: 1px;
	
	padding: 15px;
	
	background-color: #ffffff;
	
	position: absolute;
	top: 20px;
	left: 200px;
	zindex: 8;
}


.pop a
{	
	margin-top: 10px;
	font-size: 10px;
	font-family: Arial, Helvetica;
}

.pop p
{
	margin: 0px;
	padding: 0px;
}

.hide
{
	display: none;
}

.show
{
	display: block;
}

a:hover {
	text-decoration: none;}

-->
</style>

<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=600,height=450,left = 212,top = 150');");
}
// End -->