// ILA, 03.02.2006 - act_browser_info.class.1.js and act_phatjax.class.1.js Must have been included before this!

// setup phatjax instance (set last paramater to 1 to get debug information)
pj = new Phatjax('/GroupCI/stockQuote/getStockQuote.php', 'POST', 'string', -1);
// responder class instance name
pj.set_Responder_Class('tpj');
//  (set last paramater to 1 to get debug information)
pj.register_Call('getStockQuote', 'string', -1);

// setup responder class
function Stock_Pj(){};
Stock_Pj.prototype.getStockQuote_Response = function(data)
{
	document.getElementById("shareInformation").innerHTML = data;
}
tpj = new Stock_Pj();

getStockQuote();
