////////////////
//
// FINews.js
//
////////////////


function selectNews( selection_ )
{
	var windowParams = null;
	var origWindowParams = "toolbar=no,location=no,directories=no,status=no,menubar=no"
		+ ",copyhistory=no,resizable=no";
	var linkWindowParams = "toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes"
		+ ",copyhistory=yes,resizable=yes,scrollbars=yes";

	var windowName = "NewsPop";
	var htmlFile = "";
	if ( selection_ == "pointcarbon" ) {
		windowParams += ",scrollbars=yes,width=820,height=700";
		htmlFile = "http://www.pointcarbon.com/events/conferences/cmia09";
	}
	if ( selection_ == "finadium" ) {
		windowParams += ",scrollbars=yes,width=820,height=800";
		htmlFile = "http://www.finadium.com/site/conference_0908.php";
	}
	else if ( selection_ == "053000" ) {
		origWindowParams += ",scrollbars=yes,width=515,height=500";
		htmlFile = "../html/053000News.htm";
		windowParams = origWindowParams;
	}
	else if ( selection_ == "060200" ) {
		origWindowParams += ",scrollbars=yes,width=515,height=500";
		htmlFile = "../html/060200News.htm";
		windowParams = origWindowParams;
	}
	else if ( selection_ == "091500" ) {
		linkWindowParams += ",width=700,height=500";
		htmlFile = "http://www.wstonline.com/story/buySideTechWeek/WST20000915S0002";
		windowParams = linkWindowParams;
	}
	else if ( selection_ == "091800" ) {
		linkWindowParams += ",width=700,height=500";
		htmlFile = "http://biz.yahoo.com/prnews/000918/ny_fin_tra.html";
		windowParams = linkWindowParams;
	}
	else if ( selection_ == "091900" ) {
		origWindowParams += ",scrollbars=yes,width=515,height=500";
		htmlFile = "../html/091900News.htm";
		windowParams = origWindowParams;
	}
	else if ( selection_ == "100400" ) {
		linkWindowParams += ",width=700,height=500";
		htmlFile = "http://www.fpml.org/whats-happening/symposiums/NYInfo.html";
		windowParams = linkWindowParams;
	}
	else if ( selection_ == "062601" ) {
		origWindowParams += ",scrollbars=yes,width=515,height=500";
		htmlFile = "../html/062601News.htm";
		windowParams = origWindowParams;
	}
	else if ( selection_ == "060105" ) {
		origWindowParams += ",scrollbars=yes,width=515,height=500";
		htmlFile = "../html/CFD_IBDetails.htm";
		windowParams = origWindowParams;
	}
	window.open( htmlFile, windowName, windowParams );
}
