function $(elementID) {
    return document.getElementById(elementID);
}

function _(url) {
    window.location.href(url);
}

function T(element) {
	if (element != 'undefined') {
		if ($(element).style.display == 'none')
			$(element).style.display = '';
		else
			$(element).style.display = 'none';
	}
}

function CMS_PreviewImage(what) {
	if ($('image_logo') != 'undefined' && what != 'undefined') {
        temp = document.createElement('img');
        temp.setAttribute('src', 'img/' + what.options[what.selectedIndex].text);
		$('image_logo').src = temp.src;
	}
}
