// JavaScript Document


function checkTeam(obj){

	option = obj.value;
	
	if(option > 0){
		$('heslo_div').style.display = 'block'; 
	}
	else{
		$('heslo_div').style.display = 'none';
	}
	
}


function add(){

	w = 300;
	h = 150;
	sw = screen.width;
	sh = screen.height;
	x = sw/2-w/2;
	y = sh/2-h/2;
	win = window.open("web/aktivne/registracia/pridat_tim.php", "add_item", "left="+x+",top="+y+",width="+w+", height="+h);
	
}

