function externalLinks() {
if (!document.getElementsByTagName) return;
var anchors = document.getElementsByTagName("a");
for (var i=0; i<anchors.length; i++) {
var anchor = anchors[i];
if (anchor.getAttribute("href") &&
anchor.getAttribute("rel") == "external")
anchor.target = "_blank";
}
}
window.onload = externalLinks;

function open_smlouva()
{
	window.open("smlouva.php",null,"height=600,width=520,status=yes,toolbar=no,menubar=no,location=no,scrollbars=yes");
}

function sel_kraj(id)
{
	window.open("cenik-lokality.php?kraj="+id,null,"height=600,width=500,status=yes,toolbar=no,menubar=no,location=no,scrollbars=yes");
}

function set_lokalita(obec,okres,kraj,id_obec)
{
	window.opener.document.getElementById("lokalita_name").value = id_obec;
	window.opener.document.getElementById("vybrana_lokalita").innerHTML = '<strong>Obec: '+obec+", okres: "+okres+", kraj: "+kraj+'</strong>';
	window.opener.document.getElementById("vypocti").disabled = false;
	window.opener.document.getElementById("vyp").value = 55;
//	window.opener.document.location.href = "?module=cenik-new#formend";
	window.opener.document.frm1.submit();
	window.close();
}

function set_praha()
{
	document.getElementById("lokalita_name").value = 164;
	document.getElementById("vybrana_lokalita").innerHTML = '<strong>Obec: Praha</strong>';	
	document.getElementById("vypocti").disabled = false;
	document.getElementById("vyp").value = 55;
	document.frm1.submit();
}

function show_flash(id) {

	document.getElementById(id).outerHTML = document.getElementById(id).outerHTML;

}







