// JavaScript Document
function tcPopup(){
	window.open('tc.aspx','newwin','location=0,status=0,scrollbars=1,width=404,height=700');
}
function $(id){
	ids=document.getElementById(id);
	return ids;
}
function showSubnav(id,wdth){
	$('subnav'+id).style.display='block';
	$('subnav'+id).style.width=wdth;
}
function showHidenav(id){
	$('subnav'+id).style.display='none';
}




//POPS FOR INVESTMENT CAPABILITES PAGES

function popup(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
