// AJAX
var cajax;
try {
	cajax=new XMLHttpRequest(); // Firefox, Opera 8.0+, Safari
}
catch (e) {
	// Internet Explorer
	try {
		cajax=new ActiveXObject("Msxml2.XMLHTTP");
	}
	catch (e) {
		cajax=new ActiveXObject("Microsoft.XMLHTTP");
	}
}

function top_load_branze() {
	var praca = document.getElementById('top_szukaj_praca').value;
	cajax.open("GET", "ajax.php?tmp="+Math.round(1000*Math.random())+"&action=top_load_branze&praca="+praca, true);
	cajax.onreadystatechange=function() 
	{
		if(cajax.readyState == 4) 
		{
		
			if(cajax.status == 200 ) 
			{
				var xml = cajax.responseXML.getElementsByTagName('branze')[0];
				var xbranze = xml.getElementsByTagName('branza');
				var selectbranze = document.getElementById('top_szukaj_branza');
				var n=0;
				for (n=selectbranze.options.length-1;n>=0;n--)
				{
					selectbranze.remove(n);
				}
				
				var option = document.createElement('option');
				option.value = 0;
				option.text = "wszystkie";
				option.selected=true;
				selectbranze.options.add(option);
				
				for (var n=0; n<xbranze.length; n++)
				{
					var option = document.createElement('option');
					option.value = xbranze[n].getAttribute('id');
					option.text = xbranze[n].getAttribute('nazwa');
					selectbranze.options.add(option);
				}
			}
		}
	}
	cajax.send(null);
}

function sprawdz_keyword() {
  var keys = document.getElementById('top_us_keyword').value;
  if (keys=="np. sekretarka") document.getElementById('top_us_keyword').value="";
  return true;
}


function show_ogloszenie(link) {
  var winda = window.open(link.href,"Telepracuj",'width=800,height=550,resizable=0,scrollbars=yes,menubar=no');  
  return false;
}

function show_osoba(ido) {
	var winda = window.open("persona.php?id="+ido,"Telepracuj",'width=700,height=550,resizable=0,scrollbars=yes,menubar=no');
}

function show_firma(ido) {
	var winda = window.open("company.php?id="+ido,"Telepracuj",'width=800,height=720,resizable=0,scrollbars=yes,menubar=no');
}

function show_test(ido) {
	var winda = window.open("testy.php?id="+ido,"Telepracuj",'width=980,height=660,resizable=0,scrollbars=yes,menubar=no');
}

function show_testywynik(ido) {
	var winda = window.open("testywynik.php?id="+ido,"Telepracuj",'width=980,height=660,resizable=0,scrollbars=yes,menubar=no');
}

function referencje() {
  var winda = window.open("referencjeprint.php","Telepracuj",'width=700,height=440,resizable=0,scrollbars=yes,menubar=no');
}

function send_message(ido) {
  var winda = window.open("sendmsg.php?id="+ido,"Telepracuj",'width=800,height=500,resizable=0,scrollbars=yes,menubar=no');
}

function drukuj_fakture(ido) {
  var winda = window.open("printfaktura.php?id="+ido,"Telepracuj",'width=800,height=500,resizable=0,scrollbars=yes,menubar=no');
}
