/**
 * @author esinger
 */

function newWindow(url) 
{
	popupWindow = window.open(url)
}

/*
	Comment out unused news stories.  Website will rotate through as many as are listed automatically.
*/

/*   ----------------------------------------------------Marque is now used
function news()
{ 
	var news_text = new Array ();
	news_text[0] = "February, 2009 - <em>LECG auction practice</em> launches website";
	news_text[1] = "January, 2008 - LECG auction experts advise Google in US FCC Auction #73.<br/><br/> Read more: <a href='engagements.html#fcc'>FCC Auctions 66 and 73</a>";
	news_text[2] = "December, 2008 - FAA Slot Auctions for New York Airports have been delayed.<br/><br/> Read LECG expert's testimony in DOT Rulemaking: <a href='papers.html#slots'>Report of Daniel Kasper and Darin Lee</a>";
	news_text[3] = "LECG auction academic affiliate Oscar Volij has research published in <em>American Economic Review</em>: <a href='papers.html#centipedes'>Field Centipedes</a>";
	news_text[4] = "LECG auction leader Dr. Darin Lee interviewed by Forbes.com";
	news_text[5] = "news story 6";
	news_text[6] = "news story 7";


	var num_story = news_text.length
	var rand =Math.floor(num_story * Math.random());
	document.write(news_text[rand]);
}
*/