<!--

function show_id(object_id){
	var el = document.getElementById(object_id).style.display = 'block'; 
}

function hide_id(object_id){
	var el = document.getElementById(object_id).style.display = 'none'; 
}

function get_id(object_id){
	return document.getElementById(object_id); 
}

function popupwin(datei,x,y) { 
	window.open(datei,'','width='+x+',height='+y+',scrollbars=yes,resizable=yes') 
}

function getWinSize(win) {
	if(!win) win = window;
	var s = new Object();
    
	if(typeof win.innerWidth != 'undefined') {
        s.width = win.innerWidth;
        s.height = win.innerHeight;
    } else {
        var obj = getBody(win);
        s.width = parseInt(obj.clientWidth);
        s.height = parseInt(obj.clientHeight);
    }
    
	return s;
}

function getBody(w) {
    return (w.document.compatMode && w.document.compatMode == "CSS1Compat") ? w.document.documentElement : w.document.body || null;
} 

-->
