<!--
// add standard javascript routinesvar overArrow	= new Image();var outArrow	= new Image();
var overTop	= new Image();
var outTop	= new Image();

overArrow.src	= '/images/red_arrow.gif';outArrow.src	= '/images/1x1.gif';overTop.src	= '/images/back_to_top_over.gif';
outTop.src	= '/images/back_to_top.gif';
function navOver(str){	document.images['arrow_'+str].src	= overArrow.src;}function navOut(str){	document.images['arrow_'+str].src	= outArrow.src;}
function topOver()
{
	document.images['backtotop'].src	= overTop.src;
}

function topOut()
{
	document.images['backtotop'].src	= outTop.src;
}

function unFocus()
{
	window.focus();
}

function mouseIn(message)
{
	window.status = message;
	return true;
}
	
function mouseOut()
{
	window.status = '';
	return true;
}

function enlargeImage(img, lbl, cap)
{
	window.open('http://cta-investors.com/cgi-bin/tools/enlargeimage.cgi/'+img+'/'+escape(lbl)+'/'+escape(cap),'enlarge','toolbar=no,scrollbars=yes,resizable=yes,menubar=no,status=yes,directories=no,location=no,width=350,height=350');
}
	
function printPage()
{
	window.open('http://cta-investors.com/cgi-bin/tools/printpage.cgi'+escape(window.document.location.pathname)+'?referer='+escape(window.document.location),'print','toolbar=yes,scrollbars=yes,resizable=no,menubar=yes,status=yes,directories=no,location=no,width=577,height=460');
}

function emailPage()
{
	window.open('http://cta-investors.com/cgi-bin/tools/mailpage.cgi'+escape(window.document.location.pathname)+'?title='+escape(document.title)+'&referer='+escape(window.document.location),'mail','toolbar=no,scrollbars=no,resizable=no,menubar=no,status=yes,directories=no,location=no,width=500,height=500');
}
	
function popup(page)
{
	window.open(page,'info','scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,width=280,height=200');
}
//-->
