var myBaseURL = '' ;
var BaseURL = '';
var bigChartSize = false;

var MainQuoteSimbol = '';
var QuoteBoxSimbol = '';



function Update( myLocation, urlContent, preLoader)
{
	var contentHeight = GetObjectHeight( myLocation );

	var contentString = new String;
	this.d = document.getElementById( myLocation );
	
	if ( preLoader )
	{
		this.d.innerHTML = '<div id="loading" style="height: ' + contentHeight + 'px;"><br>Loading...</div>';
	}
	
	contentString = urlContent.indexOf( "?" ) > 0 ? GetFileContent( urlContent + "&anticache=" + Math.random() ) : GetFileContent( urlContent + "?anticache=" + Math.random() );

	this.d.innerHTML   = contentString;
	return ( true );
 }


function ChangeTop5 ( testID )
{
	newURL = myBaseURL+'home_tops/?test_id='+testID;
	Update ( 'Top5Home', newURL , true );
}

