<!-- POP
function pop(sLink,iWidth,iHeight,name,menubar,toolbar,location,status,scrollbars,resizable)
{
 varleft=5;
 vartop=36;
 G_day = new Date();
 G_seed = G_day.getTime();
 iRand = parseInt(((G_seed - (parseInt(G_seed/1000,10) * 1000))/10)/100*100000 + 1,10);
 iRand=name;
 winleft = ((screen.width - iWidth) / 2)-varleft;
 winUp = ((screen.height - iHeight) / 2)-vartop;
 
 window.open(sLink,iRand,',width='+iWidth+',height='+iHeight+',left='+winleft+',top='+winUp+',menubar='+menubar+',toolbar='+toolbar+',location='+location+',status='+status+',scrollbars='+scrollbars+',resizable='+resizable);
}

//-->
<!-- navsub
function navsubhide( levelid ) {
	var thisLevel = document.getElementById( levelid );
	thisLevel.style.visibility = "hidden";
	}
function navsubsee( levelid ) {
	var thisLevel = document.getElementById( levelid );
	if ( thisLevel.style.visibility == "hidden") {
		thisLevel.style.visibility = "visible";
		}
	else {
		navsubhide( levelid);
		}
	}
	
function navsubdisplayoff( levelid ) {
	var thisLevel = document.getElementById( levelid );
	thisLevel.style.display = "none";
	}
function navsubdisplayon( levelid ) {
	var thisLevel = document.getElementById( levelid );
	if ( thisLevel.style.display == "none") {
		thisLevel.style.display = "block";
		}
	else {
		navsubdisplayoff( levelid);
		}
	}
//-->
