  function dejLink(){
	  //alert('jirkas');
	  var poleURL = $("#url").val();
	  var poleXML = $("#xml_item").val();
	  var URL
	  var SWF
	  var mapa = $("#mapa").val();
	  var country = $("#country").val();
	  var city = $("#city").val();
	  var x = $("#x").val();
	  var y = $("#y").val();
	  var id = $("#id").val();
	  if(city!=""){city = " / " + city}
	  var location = country + city
	  var hosturl = 'http://' + window.location.hostname;
  //alert(hosturl)
  
  
  
  //URL = hosturl + '/detail.php?map=' + mapa +'&detail=' + id  ;
  URL = '/detail.php?map=' + mapa +'&detail=' + id  ;
  
  poleURL.value = URL;
  
  poleXML.value = 'location_name="' + location + '" x="' + x + '"' + ' y="' + y + '"' + ' url="' + URL + '"' + ' swf="' + SWF + '"  url_admin="add-point.php?map=' + mapa + '&action=edit&id=' + id + '" detail="' + id + '"' ;
  
  }	
  
  function getXYtoInput(valx, valy){
	//alert('getYX');
  	$("#x").val(valx);
  	$("#y").val(valy);
	dejLink();
  }
