// ActionScript Document
if ( Cart_is_empty()) {
	document.write('<br>Total: RM 0.00');
} else {
	document.write('<br>Total: <span class="boldAlert">');
	Print_total(true);
	document.write('</span>');
}