function HideandUNhideObj(i){
        nav=document.getElementById('div'+i).style;
        //con=document.getElementById('ul'+i);
        if(nav.display=="none"){
                // set mouseout function here
                nav.display = 'block';
               /* con.onmouseout = function(evt) {
                    if (checkMouseLeave(this, evt)) {
                        i = parseInt(this.id.substr(2));
                        nav=document.getElementById('div'+i).style;
                        nav.display = 'none';
                    }
                }*/
        } else {
                nav.display='none';
               /* con.onmouseout = function (evt) {
                    if (checkMouseLeave(this, evt)) {
                        i = parseInt(this.id.substr(2));
                        nav=document.getElementById('div'+i).style;
                        nav.display= 'none';
                    }
                }*/
        }
}

function UNhideObj(i){
        nav=document.getElementById('div'+i).style;
		//alert('u r here');
        nav.display='none';
}


function print_report(ttl,url){
	win = window.open(url,"mywindow","toolbar=0,status=0,scrollbars=1,  width="+(screen.width-100)+",height="+(screen.height-100));
	win.ttl=ttl;
	win.moveTo(0,0);
	win.print();
}
