/**
 * 
 *  DreamsCMS JavaScript function
 *  Author: Paulius Podolskis, paulius@-dev.lt
 *  www: http://paulius.podolskis.com
 *  2007 06 30
 */

function Message(message, link){
	 if (window.confirm(message)){
		window.location.href = link;
	}
}

function show(element) {
    if (element){
        obj = document.getElementById(element);
        if (obj) {
            if (obj.style.display == 'none') {
                obj.style.display = 'block';
            } else {
                obj.style.display = 'none';
            }
        }
    }
 }
