function UpdateTimerQuote(){
	var objTimerQuote;
	
	try {
		/* Check is Element Container Exists ? */
		if (document.getElementById('quotecontainer')){
			/* Update Element Container Content */
			open_url("mod.page.quote.ajax.php", "quotecontainer", false, false);
		}
	} catch (e){};
	
	objTimerQuote = setTimeout("UpdateTimerQuote()", 10000);
}

UpdateTimerQuote();