function showyear(){
	var d=new Date();
	document.write("&copy;2002-"+d.getFullYear());
}

function showmenu(elmnt){
document.getElementById(elmnt).style.visibility="visible"}
function hidemenu(elmnt){
document.getElementById(elmnt).style.visibility="hidden"}

var newWindow
function pop(theURL,winName,this_width,this_height) 
{
ax=screen.availWidth; ay=screen.availHeight; 
bx = this_width; by = this_height;
if (!newWindow || newWindow.closed) 
{
features = "location=no,scrollbars=yes,menubar=no,toolbar=no,statusbar=no,resizable=yes,width=" + this_width + ",height=" + this_height;
newWindow = window.open(theURL,winName,features);
newWindow.moveTo((ax/2)-(bx/2),20);
} 
else 
{
newWindow.focus()
newWindow.location = theURL
}
}
function hre(one){
location.href=one;
}

function tab(o){
	if(o=='one'){
		one.className="visible";
		two.className="hidden";
		A.className="td5";
		B.className="td7";
	}else if(o=='two'){
		one.className="hidden";
		two.className="visible";
		A.className="td7";
		B.className="td5";
	}
}