<!-- 

// drop down redirect

function SeekTarget(target)
{
	if (target != "")
	{
	  this.location.href = target;
	}
}


// where am I default

var whereami=''
var section=''


// open restricted window

function MM_openBrWindow(theURL,winName,features) 
	{
  window.open(theURL,winName,features);
	}


// font size

var fontSize = 9;

function FontSizeSet()
	{
	document.all.teasertext.style.fontSize = fontSize+"pt";
	}

function SetFontLarger()
	{
	fontSize = fontSize+2;
	if (fontSize > 20) {fontSize = 20;}

	FontSizeSet();
	}
	
function SetFontSmaller()
	{
	fontSize = fontSize-2;
	if (fontSize < 7) fontSize = 7;
	
	FontSizeSet();
	}

// national news & sport popup

function natpopup(mylink, nationalnews)
	{
	if (! window.focus)return true;
	
	var href;
	
	if (typeof(mylink) == 'string')
	href=mylink;
	
	else
	href=mylink.href;
	window.open(href, nationalnews, 'width=440,height=500,left=30,top=20,scrollbars=yes');
	
	return false;
	}

//-->
