try{ if (typeof(document.images['butData'])=='undefined') {
	bHasData=false;
} else {
	bHasData=true;

}

window.ChangeTimeframes=function(sChartName,fname) {
	sChartSuffix=document.images[sChartName].src.split(".");
	sChartSuffix=sChartSuffix[sChartSuffix.length-2].substr(sChartSuffix[sChartSuffix.length-2].length-1,1);
	if (bYieldCurveIsSeleceted(fname)) {
		//Yield Curve is active
		for (i=0; i < document.images.length; i++) {
			//remove Active chart marker
			if (document.images[i].src.toLowerCase()=="http://www.thefinancials.com/images/activechart.gif") {
				document.images[i].src = "http://www.theFinancials.com/images/blank.gif";
				break
			}
		}

		var sChartFileName=document.forms[fname].optTimeframe[nCheckedControlIDX].value.split(/-/);
		var sChartFileName=sChartFileName[0] + sChartSuffix + '.jpg'
		document.images[sChartName].src='http://www.theFinancials.com/Samples/' + sChartFileName
	} else {
		for (i=0; i < document.forms[fname].optTimeframe.length; i++) {
			if (document.forms[fname].optTimeframe[i].checked) {
				nTimeFrameIndex=document.forms[fname].optTimeframe[i].value.split(/-/);
				nTimeFrameIndex=nTimeFrameIndex[1];
				break;
			}
		}
		document.images[sChartName].src='http://www.theFinancials.com/Samples/' + asChart1Props[nTimeFrameIndex] + sChartSuffix + '.jpg'
	}
	return false;
}

window.LoadThumbnail=function(sChartName_w, sChartName_m, sChartName_y, sChartName_3y, sNewLocation,fname) {
	for (i=0; i < document.forms[fname].optTimeframe.length; i++) {
		if (document.forms[fname].optTimeframe[i].checked) {
			var sTimeframe=document.forms[fname].optTimeframe[i].value.split(/-/);
			var sTimeframe=sTimeframe[0]
			break;
		}
	}
	switch (sTimeframe.toUpperCase()){
		case "W" : 
			sChartName=sChartName_w;
			break;		
		case "Y" : 
			sChartName=sChartName_y;
			break;		
		case "Y3" : 
			sChartName=sChartName_3y;
			break;		
		case "M" : 
			sChartName=sChartName_m;
			break;		
		default : 
			sChartName=sChartName_m;
			for (i=0; i < document.forms[fname].optTimeframe.length; i++) {
				nTimeFrameName=document.forms[fname].optTimeframe[i].value.split(/-/);
				nTimeFrameName=nTimeFrameName[0];
				if (nTimeFrameName=="M") {
					document.forms[fname].optTimeframe[i].checked=true
					break;
				}
			}
			break;		
	}

	sChart1Props=sChartName_w+"_"+sChartName_m+"_"+sChartName_y+"_"+sChartName_3y;
	sChartContainerName=sNewLocation.split(/_/);
	sChartSuffix=document.images[sChartContainerName[0]].src.split(".");
	sChartSuffix=sChartSuffix[sChartSuffix.length-2].substr(sChartSuffix[sChartSuffix.length-2].length-1,1);

	document.images[sChartContainerName[0]].src='http://www.theFinancials.com/Samples/' + sChartName + sChartSuffix + '.jpg'
	
	for (i=0; i < document.forms[fname].optTimeframe.length; i++) {
		if (document.forms[fname].optTimeframe[i].checked) {
			nTimeFrameIndex=document.forms[fname].optTimeframe[i].value.split(/-/);
			nTimeFrameIndex=nTimeFrameIndex[1];
			break;
		}
	}

	if (sNewLocation) {
		movePageMarker(sChartContainerName[0],sNewLocation) 
	}
	return false;
}

window.ZoomThumbnail=function(sDir, sThumbChartName, sTarget) {
	if (!sDir) {
		sDir="vortex";
	}
	if (typeof(sTarget)=='undefined') {
		sTarget="_top";
	} else {
		if (!sTarget) {
			sTarget="_top";
		}
	}
	var nCurChartID= new String(document.images[sThumbChartName].src);
	var nCurChartIDList=nCurChartID.split('/');
	var nCurChartID=nCurChartIDList[nCurChartIDList.length-1];
	var nCurChartID=nCurChartID.substring(0,7) + 'v.PDF';
//	window.open("http://www.theFinancials.com/Samples/" + nCurChartID);
	window.open("http://www.theFinancials.com/ZoomChart.html?id=" + nCurChartID);
	return false;
}

window.movePageMarker=function(sChartContainerName,sNewLocation) {
	sLastLocation=sNewLocation;
	sNameToMatch=String(sChartContainerName+"_ChartInd_");
	for (i=0; i < document.images.length; i++) {
		sImageName=String(document.images[i].name);
		if (sImageName.substr(0,sNameToMatch.length)==sNameToMatch) {
			if (sImageName == sNewLocation) {
				document.images[sNewLocation].src="http://www.theFinancials.com/images/ActiveChart.gif";			
			} else {
				document.images[i].src = "http://www.theFinancials.com/images/blank.gif";
			}
		}
	}
	return false;
}

window.GetCSVData=function(sChartName, bNewWindow) {
	if (typeof(bNewWindow)=='undefined') {
		bNewWindow=true;
	}
	if (typeof(sChart1Props)=='undefined') {
		asChart1Props=initChart1Props.split(/_/);
	} else {
		asChart1Props=sChart1Props.split(/_/);
	}
	var sThreeYearFileName=asChart1Props[3] + '.csv';
	if (bNewWindow) {
		window.open("http://www.theFinancials.com/data/" + sThreeYearFileName);
	} else {
		top.document.location="http://www.theFinancials.com/data/" + sThreeYearFileName;
	}
	return false;
}

window.drpGoToPage=function(drpDown) {
	var sTarget=drpDown.options[drpDown.selectedIndex].value; 
	if (sTarget=='') {
		drpDown.selectedIndex=0;
	} else {
		document.location=sTarget;
 	} 
	return true;
} 

window.bYieldCurveIsSeleceted=function(fname) {

	for (i=0; i < document.forms[fname].optTimeframe.length; i++) {
		if (document.forms[fname].optTimeframe[i].checked) {
			nTimeFrameIndex=document.forms[fname].optTimeframe[i].value.split(/-/);
			nTimeFrameIndex=nTimeFrameIndex[1];
			nCheckedControlIDX=i;
			break;
		}
	}

	if (typeof(sChart1Props)=='undefined') {
		asChart1Props=initChart1Props.split(/_/);
	} else {
		asChart1Props=sChart1Props.split(/_/);
	}

	if (typeof(asChart1Props[nTimeFrameIndex])=='undefined') {
		return true;
	} else {
		return false;
	}
}

window.EXc_Commodity_Energy=function(sPID,sParamName,sParamVal) {
	initChart1Props='i007045_i007048_i007051_i007054';

	sHTML="";
	sHTML=sHTML+"<!LANGUAGE='JavaScript' SRC='http://www.theFinancials.com/js/Thumbnails.js'><\/script>";
	sHTML=sHTML+"<div align='center'><center>";
	sHTML=sHTML+"<form name='Fname00110' style='margin:0px; padding:0px;'><table border=0 cellspacing='0' cellpadding='2'";
	
	if (typeof(sParamName)!='undefined' && typeof(sParamVal)!='undefined') {
	   if (sParamName.toLowerCase()=='table_width' && sParamVal) {
	       sHTML=sHTML+" width='" + sParamVal + "'";
	   }
	}
	
	sHTML=sHTML+"width='165'><tr>";
	sHTML=sHTML+"<td nowrap colspan='3'  bgcolor='#4BAFC8'>";
	sHTML=sHTML+"<a href='http://www.theFinancials.com' target='_top'><img src = 'http://www.thefinancials.com/images/theFinancials_105x16.gif' alt='Compelling Content for Websites &amp; Investors' border='0' width='105' height='16'></a></td></tr>";
	sHTML=sHTML+"<TR><TD align=center bgcolor='#98D1E0' style='border-left: 1px solid #808080; border-right: 1px solid #808080' colSpan=3 border='0' cellpadding='0' height='16'>";
	sHTML=sHTML+"<a href='http://b2b.thefinancials.com/alacarte.asp' target='_top'><div style='font-family: Arial; font-size: 10px;'>Private Label Content</div></a></TD>";
	sHTML=sHTML+"</TR>";
	sHTML=sHTML+"";
	sHTML=sHTML+"      <tr>";
	sHTML=sHTML+"        <td colspan='3' bgcolor='#000000' align='center'><font color='#FFFFFF' face='Arial, Helvetica' size='2'><b>Energy Commodities</b></font><br>";
	sHTML=sHTML+"<a href='#' onClick='ZoomThumbnail(&quot;commodities&quot;,&quot;Chart251883&quot;);return false;' onmouseover='window.status=&quot;Click to Enlarge&quot;; return false' onmouseout='window.status=&quot;&quot;; return false' target='_self'><img src='http://www.thefinancials.com/charts//i007051t.jpg' name='Chart251883' alt='Click to Enlarge' border='0' width='165' height='100' style='padding-top: 1px; padding-left: 1px; padding-right: 1px' hspace='1'></a></td>";
	sHTML=sHTML+"      </tr>";
	sHTML=sHTML+"<tr><td colspan='3' bgcolor='#000000' align='center' nowrap valign='middle'><font color='#FFFFFF' face='Arial, Helvetica' size='2'><b><input type='radio' value='W-0' name='optTimeframe' onclick='ChangeTimeframes(&quot;Chart251883&quot;,&quot;Fname00110&quot;)'>Wk&nbsp;<input type='radio' value='M-1' name='optTimeframe' onclick='ChangeTimeframes(&quot;Chart251883&quot;,&quot;Fname00110&quot;)'>Mo&nbsp;<input type='radio' value='Y-2' name='optTimeframe' onclick='ChangeTimeframes(&quot;Chart251883&quot;,&quot;Fname00110&quot;)' checked>Yr&nbsp;<input type='radio' value='Y3-3' name='optTimeframe' onclick='ChangeTimeframes(&quot;Chart251883&quot;,&quot;Fname00110&quot;)'>3Yr</b></font>    </td></tr>      <tr>";
	sHTML=sHTML+"        <td  bgcolor='#000080' colspan='2' align='left'><font face='Arial, Helvetica' size='2' color='#FFFFFF' >8-May-08</font></td>";
	sHTML=sHTML+"        <td bgcolor='#000080' align='center''><font face='Arial, Helvetica' size='2' color='#FFFFFF'>Last</font></td>";
	sHTML=sHTML+"      </tr>";
	sHTML=sHTML+"";
	sHTML=sHTML+"<tr>";
	sHTML=sHTML+"   <td nowrap style='padding-top: 2; padding-bottom: 2; text-align:left; '><a href='#' onClick='LoadThumbnail(&quot;i007047&quot;,&quot;i007050&quot;,&quot;i007053&quot;,&quot;i007056&quot;,&quot;Chart251883_ChartInd_114904&quot;,&quot;Fname00110&quot;);return false;'  onmouseover='window.status=&quot;WTI Crude Oil - Near Term $/barrel [ICE] as of 8-May-2008 22:29&quot;; return true' onmouseout='window.status=&quot;&quot;; return true'><font face='Arial, Helvetica'  size='1'>WTI Crude-ICE</font></a>";
	sHTML=sHTML+" <img name='Chart251883_ChartInd_114904' border='0' src='http://www.thefinancials.com/images/blank.gif'></td>";
	sHTML=sHTML+"        <td nowrap style='padding-top: 2; padding-bottom: 2; text-align:center; '><img src='http://www.thefinancials.com/images/uparrow.gif' border='0'></td>";
	sHTML=sHTML+"   <td nowrap style='padding-top: 2; padding-bottom: 2; text-align:right;'><a onmouseover='window.status=&quot;up 0.53 as of 8-May-2008 22:29&quot;; return true' onmouseout='window.status=&quot;&quot;; return true'><font  size='1' face='Arial, Helvetica' color='#008000'>124.33</font></a></td>";
	sHTML=sHTML+"</tr>";
	sHTML=sHTML+"<tr>";
	sHTML=sHTML+"   <td nowrap style='padding-top: 2; padding-bottom: 2; text-align:left; '><a href='#' onClick='LoadThumbnail(&quot;i001173&quot;,&quot;i001174&quot;,&quot;i001175&quot;,&quot;i001578&quot;,&quot;Chart251883_ChartInd_550287&quot;,&quot;Fname00110&quot;);return false;'  onmouseover='window.status=&quot;Brent Crude Oil - Near Term $/barrel [ICE] as of 8-May-2008 22:29&quot;; return true' onmouseout='window.status=&quot;&quot;; return true'><font face='Arial, Helvetica'  size='1'>Brent Crude-ICE</font></a>";
	sHTML=sHTML+" <img name='Chart251883_ChartInd_550287' border='0' src='http://www.thefinancials.com/images/blank.gif'></td>";
	sHTML=sHTML+"        <td nowrap style='padding-top: 2; padding-bottom: 2; text-align:center; '><img src='http://www.thefinancials.com/images/uparrow.gif' border='0'></td>";
	sHTML=sHTML+"   <td nowrap style='padding-top: 2; padding-bottom: 2; text-align:right;'><a onmouseover='window.status=&quot;up 0.94 as of 8-May-2008 22:29&quot;; return true' onmouseout='window.status=&quot;&quot;; return true'><font  size='1' face='Arial, Helvetica' color='#008000'>123.59</font></a></td>";
	sHTML=sHTML+"</tr>";
	sHTML=sHTML+"<tr>";
	sHTML=sHTML+"   <td nowrap style='padding-top: 2; padding-bottom: 2; text-align:left; '><a  onmouseover='window.status=&quot;Ethanol $/gal - CBOT as of 8-May-2008 14:09&quot;; return true' onmouseout='window.status=&quot;&quot;; return true'><font face='Arial, Helvetica'  size='1'>Ethanol-cbot</font></a>";
	sHTML=sHTML+" <img name='Chart251883_ChartInd_606626' border='0' src='http://www.thefinancials.com/images/blank.gif'></td>";
	sHTML=sHTML+"        <td nowrap style='padding-top: 2; padding-bottom: 2; text-align:center; '><img src='http://www.thefinancials.com/images/uparrow.gif' border='0'></td>";
	sHTML=sHTML+"   <td nowrap style='padding-top: 2; padding-bottom: 2; text-align:right;'><a onmouseover='window.status=&quot;up 0.0360 as of 8-May-2008 14:09&quot;; return true' onmouseout='window.status=&quot;&quot;; return true'><font  size='1' face='Arial, Helvetica' color='#008000'>2.5950</font></a></td>";
	sHTML=sHTML+"</tr>";
	sHTML=sHTML+"<tr>";
	sHTML=sHTML+"   <td nowrap style='padding-top: 2; padding-bottom: 2; text-align:left; '><a href='#' onClick='LoadThumbnail(&quot;i003454&quot;,&quot;i003461&quot;,&quot;i003468&quot;,&quot;i003475&quot;,&quot;Chart251883_ChartInd_537646&quot;,&quot;Fname00110&quot;);return false;'  onmouseover='window.status=&quot;Gas Oil - Near Term US$/MT [ICE] as of 8-May-2008 17:14&quot;; return true' onmouseout='window.status=&quot;&quot;; return true'><font face='Arial, Helvetica'  size='1'>Gas Oil-ICE</font></a>";
	sHTML=sHTML+" <img name='Chart251883_ChartInd_537646' border='0' src='http://www.thefinancials.com/images/blank.gif'></td>";
	sHTML=sHTML+"        <td nowrap style='padding-top: 2; padding-bottom: 2; text-align:center; '><img src='http://www.thefinancials.com/images/uparrow.gif' border='0'></td>";
	sHTML=sHTML+"   <td nowrap style='padding-top: 2; padding-bottom: 2; text-align:right;'><a onmouseover='window.status=&quot;up 25.50 as of 8-May-2008 17:14&quot;; return true' onmouseout='window.status=&quot;&quot;; return true'><font  size='1' face='Arial, Helvetica' color='#008000'>1,169.75</font></a></td>";
	sHTML=sHTML+"</tr>";
	sHTML=sHTML+"<tr>";
	sHTML=sHTML+"   <td nowrap style='padding-top: 2; padding-bottom: 2; text-align:left; '><a href='#' onClick='LoadThumbnail(&quot;i007045&quot;,&quot;i007048&quot;,&quot;i007051&quot;,&quot;i007054&quot;,&quot;Chart251883_ChartInd_881975&quot;,&quot;Fname00110&quot;);return false;'  onmouseover='window.status=&quot;Natural Gas $/MMBtu [ICE] as of 8-May-2008 11:19&quot;; return true' onmouseout='window.status=&quot;&quot;; return true'><font face='Arial, Helvetica'  size='1'>Nat Gas $/MMBtu-ICE</font></a>";
	sHTML=sHTML+" <img name='Chart251883_ChartInd_881975' border='0' src='http://www.thefinancials.com/images/ActiveChart.gif' alt='This marker indicates the current chart.'></td>";
	sHTML=sHTML+"        <td nowrap style='padding-top: 2; padding-bottom: 2; text-align:center; '><img src='http://www.thefinancials.com/images/uparrow.gif' border='0'></td>";
	sHTML=sHTML+"   <td nowrap style='padding-top: 2; padding-bottom: 2; text-align:right;'><a onmouseover='window.status=&quot;up 0.10 as of 8-May-2008 11:19&quot;; return true' onmouseout='window.status=&quot;&quot;; return true'><font  size='1' face='Arial, Helvetica' color='#008000'>11.70</font></a></td>";
	sHTML=sHTML+"</tr>";
	sHTML=sHTML+"<tr>";
	sHTML=sHTML+"   <td nowrap style='padding-top: 2; padding-bottom: 2; text-align:left; '><a href='#' onClick='LoadThumbnail(&quot;i007046&quot;,&quot;i007049&quot;,&quot;i007052&quot;,&quot;i007055&quot;,&quot;Chart251883_ChartInd_124318&quot;,&quot;Fname00110&quot;);return false;'  onmouseover='window.status=&quot;Natural Gas pence/therm [ICE] as of 8-May-2008 11:19&quot;; return true' onmouseout='window.status=&quot;&quot;; return true'><font face='Arial, Helvetica'  size='1'>NatlGas pence/therm</font></a>";
	sHTML=sHTML+" <img name='Chart251883_ChartInd_124318' border='0' src='http://www.thefinancials.com/images/blank.gif'></td>";
	sHTML=sHTML+"        <td nowrap style='padding-top: 2; padding-bottom: 2; text-align:center; '><img src='http://www.thefinancials.com/images/downarrow.gif' border='0'></td>";
	sHTML=sHTML+"   <td nowrap style='padding-top: 2; padding-bottom: 2; text-align:right;'><a onmouseover='window.status=&quot;down 0.0010 as of 8-May-2008 11:19&quot;; return true' onmouseout='window.status=&quot;&quot;; return true'><font  size='1' face='Arial, Helvetica' color='#FF0000'>0.5960</font></a></td>";
	sHTML=sHTML+"</tr>";
	sHTML=sHTML+"<tr>";
	sHTML=sHTML+"   <td nowrap style='padding-top: 2; padding-bottom: 2; text-align:left; '><a href='#' onClick='LoadThumbnail(&quot;i000000&quot;,&quot;i000000&quot;,&quot;i003686&quot;,&quot;i003695&quot;,&quot;Chart251883_ChartInd_508800&quot;,&quot;Fname00110&quot;);return false;'  onmouseover='window.status=&quot;Baker Hughes Oil and Gas Rig Count - United States as of 30-Apr-2008 Close&quot;; return true' onmouseout='window.status=&quot;&quot;; return true'><font face='Arial, Helvetica'  size='1'>Rig Count - USA</font></a>";
	sHTML=sHTML+" <img name='Chart251883_ChartInd_508800' border='0' src='http://www.thefinancials.com/images/blank.gif'></td>";
	sHTML=sHTML+"        <td nowrap style='padding-top: 2; padding-bottom: 2; text-align:center; '><img src='http://www.thefinancials.com/images/uparrow.gif' border='0'></td>";
	sHTML=sHTML+"   <td nowrap style='padding-top: 2; padding-bottom: 2; text-align:right;'><a onmouseover='window.status=&quot;up 32 as of 30-Apr-2008 Close&quot;; return true' onmouseout='window.status=&quot;&quot;; return true'><font  size='1' face='Arial, Helvetica' color='#008000'>1,829</font></a></td>";
	sHTML=sHTML+"</tr>";
	sHTML=sHTML+"<tr>";
	sHTML=sHTML+"   <td nowrap style='padding-top: 2; padding-bottom: 2; text-align:left; '><a href='#' onClick='LoadThumbnail(&quot;i000000&quot;,&quot;i000000&quot;,&quot;i003694&quot;,&quot;i003703&quot;,&quot;Chart251883_ChartInd_208321&quot;,&quot;Fname00110&quot;);return false;'  onmouseover='window.status=&quot;Baker Hughes Oil and Gas Rig Count - Total World as of 30-Apr-2008 Close&quot;; return true' onmouseout='window.status=&quot;&quot;; return true'><font face='Arial, Helvetica'  size='1'>Rig Count - Total World</font></a>";
	sHTML=sHTML+" <img name='Chart251883_ChartInd_208321' border='0' src='http://www.thefinancials.com/images/blank.gif'></td>";
	sHTML=sHTML+"        <td nowrap style='padding-top: 2; padding-bottom: 2; text-align:center; '><img src='http://www.thefinancials.com/images/downarrow.gif' border='0'></td>";
	sHTML=sHTML+"   <td nowrap style='padding-top: 2; padding-bottom: 2; text-align:right;'><a onmouseover='window.status=&quot;down 250 as of 30-Apr-2008 Close&quot;; return true' onmouseout='window.status=&quot;&quot;; return true'><font  size='1' face='Arial, Helvetica' color='#FF0000'>3,009</font></a></td>";
	sHTML=sHTML+"</tr>";
	sHTML=sHTML+"<tr>";
	sHTML=sHTML+"   <td nowrap style='padding-top: 2; padding-bottom: 2; text-align:left; '><a href='#' onClick='LoadThumbnail(&quot;i000000&quot;,&quot;i000000&quot;,&quot;i003690&quot;,&quot;i003699&quot;,&quot;Chart251883_ChartInd_988359&quot;,&quot;Fname00110&quot;);return false;'  onmouseover='window.status=&quot;Baker Hughes Oil and Gas Rig Count - Middle East as of 30-Apr-2008 Close&quot;; return true' onmouseout='window.status=&quot;&quot;; return true'><font face='Arial, Helvetica'  size='1'>Rig Count - Middle East</font></a>";
	sHTML=sHTML+" <img name='Chart251883_ChartInd_988359' border='0' src='http://www.thefinancials.com/images/blank.gif'></td>";
	sHTML=sHTML+"        <td nowrap style='padding-top: 2; padding-bottom: 2; text-align:center; '><img src='http://www.thefinancials.com/images/uparrow.gif' border='0'></td>";
	sHTML=sHTML+"   <td nowrap style='padding-top: 2; padding-bottom: 2; text-align:right;'><a onmouseover='window.status=&quot;up 10 as of 30-Apr-2008 Close&quot;; return true' onmouseout='window.status=&quot;&quot;; return true'><font  size='1' face='Arial, Helvetica' color='#008000'>279</font></a></td>";
	sHTML=sHTML+"</tr>";
	sHTML=sHTML+"<tr>";
	sHTML=sHTML+"   <td nowrap style='padding-top: 2; padding-bottom: 2; text-align:left; '><a href='#' onClick='LoadThumbnail(&quot;i000000&quot;,&quot;i000000&quot;,&quot;i003687&quot;,&quot;i003696&quot;,&quot;Chart251883_ChartInd_699940&quot;,&quot;Fname00110&quot;);return false;'  onmouseover='window.status=&quot;Baker Hughes Oil and Gas Rig Count - Latin America as of 30-Apr-2008 Close&quot;; return true' onmouseout='window.status=&quot;&quot;; return true'><font face='Arial, Helvetica'  size='1'>Rig Count - LatAm</font></a>";
	sHTML=sHTML+" <img name='Chart251883_ChartInd_699940' border='0' src='http://www.thefinancials.com/images/blank.gif'></td>";
	sHTML=sHTML+"        <td nowrap style='padding-top: 2; padding-bottom: 2; text-align:center; '><img src='http://www.thefinancials.com/images/noarrow.gif' border='0'></td>";
	sHTML=sHTML+"   <td nowrap style='padding-top: 2; padding-bottom: 2; text-align:right;'><a onmouseover='window.status=&quot;no change as of 30-Apr-2008 Close&quot;; return true' onmouseout='window.status=&quot;&quot;; return true'><font  size='1' face='Arial, Helvetica' color='#000000'>380</font></a></td>";
	sHTML=sHTML+"</tr>";
	sHTML=sHTML+"<tr>";
	sHTML=sHTML+"   <td nowrap style='padding-top: 2; padding-bottom: 2; text-align:left; '><a href='#' onClick='LoadThumbnail(&quot;i000000&quot;,&quot;i000000&quot;,&quot;i003692&quot;,&quot;i003701&quot;,&quot;Chart251883_ChartInd_347608&quot;,&quot;Fname00110&quot;);return false;'  onmouseover='window.status=&quot;Baker Hughes Oil and Gas Rig Count - Total Foreign as of 30-Apr-2008 Close&quot;; return true' onmouseout='window.status=&quot;&quot;; return true'><font face='Arial, Helvetica'  size='1'>Rig Count - Total Foreign</font></a>";
	sHTML=sHTML+" <img name='Chart251883_ChartInd_347608' border='0' src='http://www.thefinancials.com/images/blank.gif'></td>";
	sHTML=sHTML+"        <td nowrap style='padding-top: 2; padding-bottom: 2; text-align:center; '><img src='http://www.thefinancials.com/images/uparrow.gif' border='0'></td>";
	sHTML=sHTML+"   <td nowrap style='padding-top: 2; padding-bottom: 2; text-align:right;'><a onmouseover='window.status=&quot;up 20 as of 30-Apr-2008 Close&quot;; return true' onmouseout='window.status=&quot;&quot;; return true'><font  size='1' face='Arial, Helvetica' color='#008000'>1,074</font></a></td>";
	sHTML=sHTML+"</tr>";
	sHTML=sHTML+"<tr>";
	sHTML=sHTML+"   <td nowrap style='padding-top: 2; padding-bottom: 2; text-align:left; '><a href='#' onClick='LoadThumbnail(&quot;i000000&quot;,&quot;i000000&quot;,&quot;i003691&quot;,&quot;i003700&quot;,&quot;Chart251883_ChartInd_244874&quot;,&quot;Fname00110&quot;);return false;'  onmouseover='window.status=&quot;Baker Hughes Oil and Gas Rig Count - Far East as of 30-Apr-2008 Close&quot;; return true' onmouseout='window.status=&quot;&quot;; return true'><font face='Arial, Helvetica'  size='1'>Rig Count - Far East</font></a>";
	sHTML=sHTML+" <img name='Chart251883_ChartInd_244874' border='0' src='http://www.thefinancials.com/images/blank.gif'></td>";
	sHTML=sHTML+"        <td nowrap style='padding-top: 2; padding-bottom: 2; text-align:center; '><img src='http://www.thefinancials.com/images/uparrow.gif' border='0'></td>";
	sHTML=sHTML+"   <td nowrap style='padding-top: 2; padding-bottom: 2; text-align:right;'><a onmouseover='window.status=&quot;up 14 as of 30-Apr-2008 Close&quot;; return true' onmouseout='window.status=&quot;&quot;; return true'><font  size='1' face='Arial, Helvetica' color='#008000'>249</font></a></td>";
	sHTML=sHTML+"</tr>";
	sHTML=sHTML+"<tr>";
	sHTML=sHTML+"   <td nowrap style='padding-top: 2; padding-bottom: 2; text-align:left; '><a href='#' onClick='LoadThumbnail(&quot;i000000&quot;,&quot;i000000&quot;,&quot;i003688&quot;,&quot;i003697&quot;,&quot;Chart251883_ChartInd_469763&quot;,&quot;Fname00110&quot;);return false;'  onmouseover='window.status=&quot;Baker Hughes Oil and Gas Rig Count - Europe as of 30-Apr-2008 Close&quot;; return true' onmouseout='window.status=&quot;&quot;; return true'><font face='Arial, Helvetica'  size='1'>Rig Count - Europe</font></a>";
	sHTML=sHTML+" <img name='Chart251883_ChartInd_469763' border='0' src='http://www.thefinancials.com/images/blank.gif'></td>";
	sHTML=sHTML+"        <td nowrap style='padding-top: 2; padding-bottom: 2; text-align:center; '><img src='http://www.thefinancials.com/images/downarrow.gif' border='0'></td>";
	sHTML=sHTML+"   <td nowrap style='padding-top: 2; padding-bottom: 2; text-align:right;'><a onmouseover='window.status=&quot;down 7 as of 30-Apr-2008 Close&quot;; return true' onmouseout='window.status=&quot;&quot;; return true'><font  size='1' face='Arial, Helvetica' color='#FF0000'>93</font></a></td>";
	sHTML=sHTML+"</tr>";
	sHTML=sHTML+"<tr>";
	sHTML=sHTML+"   <td nowrap style='padding-top: 2; padding-bottom: 2; text-align:left; '><a href='#' onClick='LoadThumbnail(&quot;i000000&quot;,&quot;i000000&quot;,&quot;i003693&quot;,&quot;i003702&quot;,&quot;Chart251883_ChartInd_732536&quot;,&quot;Fname00110&quot;);return false;'  onmouseover='window.status=&quot;Baker Hughes Oil and Gas Rig Count - Canada as of 30-Apr-2008 Close&quot;; return true' onmouseout='window.status=&quot;&quot;; return true'><font face='Arial, Helvetica'  size='1'>Rig Count - Canada</font></a>";
	sHTML=sHTML+" <img name='Chart251883_ChartInd_732536' border='0' src='http://www.thefinancials.com/images/blank.gif'></td>";
	sHTML=sHTML+"        <td nowrap style='padding-top: 2; padding-bottom: 2; text-align:center; '><img src='http://www.thefinancials.com/images/downarrow.gif' border='0'></td>";
	sHTML=sHTML+"   <td nowrap style='padding-top: 2; padding-bottom: 2; text-align:right;'><a onmouseover='window.status=&quot;down 302 as of 30-Apr-2008 Close&quot;; return true' onmouseout='window.status=&quot;&quot;; return true'><font  size='1' face='Arial, Helvetica' color='#FF0000'>106</font></a></td>";
	sHTML=sHTML+"</tr>";
	sHTML=sHTML+"<tr>";
	sHTML=sHTML+"   <td nowrap style='padding-top: 2; padding-bottom: 2; text-align:left; '><a href='#' onClick='LoadThumbnail(&quot;i000000&quot;,&quot;i000000&quot;,&quot;i003689&quot;,&quot;i003698&quot;,&quot;Chart251883_ChartInd_69401&quot;,&quot;Fname00110&quot;);return false;'  onmouseover='window.status=&quot;Baker Hughes Oil and Gas Rig Count - Africa as of 30-Apr-2008 Close&quot;; return true' onmouseout='window.status=&quot;&quot;; return true'><font face='Arial, Helvetica'  size='1'>Rig Count - Africa</font></a>";
	sHTML=sHTML+" <img name='Chart251883_ChartInd_69401' border='0' src='http://www.thefinancials.com/images/blank.gif'></td>";
	sHTML=sHTML+"        <td nowrap style='padding-top: 2; padding-bottom: 2; text-align:center; '><img src='http://www.thefinancials.com/images/uparrow.gif' border='0'></td>";
	sHTML=sHTML+"   <td nowrap style='padding-top: 2; padding-bottom: 2; text-align:right;'><a onmouseover='window.status=&quot;up 3 as of 30-Apr-2008 Close&quot;; return true' onmouseout='window.status=&quot;&quot;; return true'><font  size='1' face='Arial, Helvetica' color='#008000'>73</font></a></td>";
	sHTML=sHTML+"</tr>";
	sHTML=sHTML+"<tr >";
	sHTML=sHTML+"<td colspan='3' align='center' valign='top'>";
	sHTML=sHTML+"<div align='center'>";
	sHTML=sHTML+"<table border='0' cellpadding='0' cellspacing='0' width='100%'>";
	sHTML=sHTML+"<tr >";
	sHTML=sHTML+"<td valign='top' colspan='2'> <hr color='#CCCCCC' size='0'></td>";
	sHTML=sHTML+"</tr>";
	sHTML=sHTML+"<tr >";
	sHTML=sHTML+" <td align='center' valign='bottom' width='50%'>";
	sHTML=sHTML+"<a href='http://www.theFinancials.com/GotoReport.html?site=COM&id=EX_Commodity_Energy.html' onmouseover='window.status=&quot;View Historical Comparisons: Energy Commodity Prices&quot;; return true' target='_top'><b>view details &amp; history</b></a></td>";
	sHTML=sHTML+"<td align='center' valign='bottom' width='50%' >";
	sHTML=sHTML+"<a href='http://www.theFinancials.com/LoadSample.html?style=Compact%20Thumbnail&styleid=C&title=Energy%20Commodity%20Prices&id=1029&file=EXc_Commodity_Energy&branding=C' onmouseover='window.status=&quot;Request instructions for adding this report to your site, for FREE.&quot;; return true' onmouseout='window.status=&quot;&quot;; return true' target='_top'><b>add to your site (free)</b></b></font></a></td>";
	sHTML=sHTML+" </tr>";
	sHTML=sHTML+"<tr >";
	sHTML=sHTML+"<td valign='top' colspan='2'> <hr color='#CCCCCC' size='0'></td>";
	sHTML=sHTML+"</tr>";
	sHTML=sHTML+"</table>";
	sHTML=sHTML+"</div>";
	sHTML=sHTML+"</td>";
	sHTML=sHTML+"</tr>";
	sHTML=sHTML+"</table></form>";
	sHTML=sHTML+"<center>";
	sHTML=sHTML+"<div align='center' style='margin-top: 0; margin-bottom: 0'><font color='#000000'' size='1' face = 'Arial Narrow, Helvetica'>sources: DTN, Baker Hughes</font></div><div align='center'> <a href='http://www.theFinancials.com' target='_top'><font SIZE='1' FACE='Arial, Helvetica'>&#169; theFinancials.com </a></font></div></center>";
	sHTML=sHTML+"</center></div>";
	return sHTML;
}
document.getElementById("financials_div").innerHTML =(EXc_Commodity_Energy("eurasiapress")); }catch(e){}