/**
 * 
 *  DreamsCMS JavaScript functions
 *  www: http://www.estina.lt
 *  2007 06 30
 */
 
 
function popup(url, params){
		var url_link = unescape(url);
		if (!params) params = 'resizable=false,location=false,top='+(screen.height-670-40)/2+',left='+(screen.width-450)/2+',width=480,height=670,status=false,menubar=false,scrollbars=yes';
		newWindow = window.open(url_link, '', params);
		newWindow.focus();
}
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';
            }
        }
    }
 }