function emoticon(text) {
	var txtarea = document.post.comentariu;
	text = ' ' + text + ' ';
	txtarea.value  += text;
}
function add_to_favorite(url,title){

  if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4)) {
    window.external.AddFavorite(url,title);
  } else if (navigator.appName == "Netscape") {
    window.sidebar.addPanel(title,url,"");
  } else {
    alert("Press CTRL-D (Netscape) or CTRL-T (Opera) to bookmark");
  }
}
function show_top_subcateg(categ){
	if(categ=='subcat_jocuri'){
		document.getElementById(categ).style.display='block';
	}
}
function hide_top_subcateg(categ){
	if(categ=='subcat_jocuri'){
		document.getElementById(categ).style.display='none';
	}
}
function  show_content_tab(tab){
	if(tab=='video'){
		document.getElementById('tag_videoclipuri').style.display='block';
		document.getElementById('tag_bancuri').style.display='none';
		document.getElementById('tag_perle').style.display='none';
		}
	if(tab=='bancuri'){
		document.getElementById('tag_videoclipuri').style.display='none';
		document.getElementById('tag_bancuri').style.display='block';
		document.getElementById('tag_perle').style.display='none';
	}
}