if (quickQuoteOk) {
	prefix="";
	if (movement > 0) { colStr = "green"; prefix="+"; }
	if (movement < 0) { colStr = "red"; }
	if (movement == 0) { colStr = "black"; }

	document.write('');
	document.write('<h4>Quick Quote for ' + company + ' (' + qtesymbol + ') as of ' + timeStamp + '. (20 minutes delayed)<\/h4>');
	document.write ('<table class="quick_quote">');
	document.write ('<tr><th>Last<\/th><th>Movement<\/th><th>Move +/- %<\/th><th>Open<\/th><th>High<\/th><th>Low<\/th><th>Prev. Close<\/th><th>Volume<\/th><\/tr>');
	document.write('<tr><td class="content">' + lastPrice + '<\/td><td class="content"><span class="' + colStr + '">' + prefix + movement + '<\/span><\/td><td class="content"><span class="' + colStr + '">' + prefix + movementPercent + '%<\/span><\/td><td class="content">' + openPrice + '<\/td><td class="content">' + highPrice + '<\/td><td class="content">' + lowPrice + '<\/td><td class="content">' + previousClose + '<\/td><td class="content">' + volumeTraded + '<\/td><\/tr>');
	document.write ('<\/table>');
	document.write ('');
}