function hide_all(){
	var a
 a=document.getElementById('form_detalii_firma')
 if(a!=null)
	 a.style.display = 'none';
	 
 b=document.getElementById('form_adresa_user')
 if(b!=null)
	 b.style.display = 'none';
}
function show_div(param){
 var a
 a=document.getElementById(param)
 a.style.display = 'block';
}

function hide_div(param){
 var a
 a=document.getElementById(param)
 a.style.display = 'none';
}

function display_div(){
	var a
	a=document.getElementById('statut_juridic').selectedIndex
	
	if (a == 'Persoana fizica') {
		hide_all();
		show_div('form_adresa_user');
	}
	
	if (a == 'Persoana juridica') {
		hide_all();
		show_div('form_detalii_firma');
		show_div('form_adresa_user');
	}
		
}

function bifeaza_statut(param){
	var a
	a=document.getElementById(param)
	a.checked=true
	
}

function confirmaStergere(delUrl) {
  if (confirm("Sunteti sigur(a) ca doriti sa stergeti?")) {
    document.location = delUrl;
  }else{
  	//window.alert("Stergerea a fost anulata!");
  }
}

function CreateBookmarkLink() {

 title = "Manager.ro - Portalul tau de stiri"; 
 url = "http://www.manager.ro/";

	if (window.sidebar) { // Mozilla Firefox Bookmark
		window.sidebar.addPanel(title, url,"");
	} else if( window.external ) { // IE Favorite
		window.external.AddFavorite( url, title); }
	else if(window.opera && window.print) { // Opera Hotlist
		return true; }
		
	if (window.external) {
	  document.write('<a href = "javascript:CreateBookmarkLink()");">Add to Favorites</a>'); 
	  } else  if (window.sidebar) {
	  document.write('<a href = javascript:CreateBookmarkLink()");">Bookmark Page</a>'); 
	 } else if (window.opera && window.print) {	
	   document.write('<a href ="javascript:CreateBookmarkLink()");">Add Bookmark</a>');
	 }	
	
 }
