<?php
function smarty_function_imagesUrl($params, $tpl) {
	$imagesUrl = "/images";
	if (defined("IMAGES_URL")) {
		$imagesUrl = IMAGES_URL;
	} else if (defined("SUB_URL")) {
		$imagesUrl = SUB_URL . $imagesUrl;
	}
	return $imagesUrl;
}
?>
