function ablak(links){
	window.open (links, 'openwindow', 'toolbar=no, menubar=no, status=no, scrollbars=yes, left=0, top=0');
}

function setHide(id){
  my_table=document.getElementById(id)
  my_more_link=document.getElementById('kapcs_link')
  my_extras = document.getElementById('extras')  
    my_table_rows = my_table.rows.length;
    if (my_table.rows[1].style.display=='') vis='none'; else vis='';     
    for(i=1; i<my_table_rows; i++){    
      my_table.rows[i].style.display = vis;
    }
    try{
      my_more_link.style.display=vis;
    }catch(e){}    
    my_extras.style.display=vis;
}

function setStyle(elem, styl){ elem.className=styl; }

function print_view(){
  ob_h = document.getElementById('extras').offsetTop+100;
  my_left = (screen.width/2)-400;
  pw = window.open("", "print_view", 'toolbar=no, menubar=no, status=no, scrollbars=yes, left='+my_left+', top=0, width=800, height='+ob_h);
    in_start='<html><head><title>Flister - Nyomtatási nézet</title></head><body>\n';
    stilusa = '<link href=core/print.css rel=stylesheet type=text/css />\n';
    titled = '<p><span class=print_view>Nyomtatási nézet</span> <span class=pv_menu><a href=javascript:window.close()>Bezár</a> | <a href="javascript:window.opener.print(); window.close();">Nyomtatás</a></span></p>\n';
    tartalom='<p onclick="return false">'+document.body.innerHTML+'</p>';
    in_end='</body></html>';
  pw.document.write(in_start+stilusa+titled+tartalom+in_end);
  pw.document.close();
}

