	var ann = new Array(2);
	var ann_t = new Array(2);
	ann[0] = "<br>Agradecemos los comentarios y sugerencias que recibimos de nuestros usuarios.<br><br>Con su ayuda queremos que RadiosAMFM.com se convierta en la mejor p&aacute;gina de Radios de Argentina. Por favor contin&uacute;en navegando nuestra p&aacute;gina y enviando sus contribuciones que siempre nos resultan muy importantes.";
	ann[1]= "Muchas Gracias<br>El equipo de <b>The Soft Lab!</b>!";	
	ann_t[0] = "05/Abr/2009 - Comentarios y Sugerencias ";
	ann_t[1] = "05/Abr/2009 - Muchas Gracias!! ";
	ann_n = 0;

function comments_suggestions() { window.open('Acciones/dsp_comments.cfm','comments','height=270,width=400'); }

function change_ann (n) {
	anno_td.innerHTML = ann[n];
	anno_t_td.innerHTML = ann_t[n];
}

function rotate_ann(sense) {
	ann_n = (ann.length + ann_n + sense) % ann.length;
	anno_td.innerHTML = ann[ann_n];
	anno_t_td.innerHTML = ann_t[ann_n];
}

function body_load() {
	anno_td = document.getElementById("ann_td");
	anno_t_td = document.getElementById("ann_t_td");
	change_ann(ann_n);
}

function qOK() {
	qV = document.getElementById('q').value;
	if (qV.length <= 1) alert('Your search querys should be larger than one character');
	return qV.length > 1;
}

function changeOptionsDisplay (show) {
	document.getElementById('mapa').style.display = 'none';
	document.getElementById('zonas').style.display = 'none';
	document.getElementById(show).style.display = 'block';
}

function options(eid, exp) {
	if (!compatibleBr()) goIT(eid);
	else menuOp(eid,exp);
}

function menuOp(eid,exp) {
	id = getCode(eid);
	type = getType(eid);

	childCount = getChildCount(eid);
	if (type == 're') childs = cnts;
	else childs = provs;

	if (exp) colSize = Math.ceil(childCount / 3);
	else colSize = 4;

	cType = getChildsType(type);
	zones = document.getElementById('zonas');
	changeOptionsDisplay('zonas');

	j=0;
	zonesHTML = "<table width='480' class='form' cellspacing='0' align='center'>";
	zonesHTML += "<th colspan='3'>What do you want to do on "+name(eid)+"?</th>";
	zonesHTML += "<tr><td colspan='3'><br><b><a href=javascript:goIT('"+eid+"');>&raquo; Show all newspapers</a></b></td></tr>";
	if (type == 'co') zonesHTML+= "<tr><td colspan='3'><b><a href=javascript:goIT('prNA"+id+"');>&raquo; Show national newspapers only</a></b></td></tr>";
	zonesHTML += "<tr><td colspan='3'><br><a href=javascript:adIT('"+eid+"')><b>&raquo;</b> Show me advanced browsing options for " + name(eid) + "</a><br><hr color='#FFFFFF' width='100%' size=1 noshade></td></tr>";
	zonesHTML += "<tr><td colspan='3'><br><b>Show newspapers only for:</b></td></tr>";
	zonesHTML += "<tr><td>";

	for (i = 0; i<childs.length; i++) {
		if (childs[i][0] == id && (childs[i][3] || exp)) {
			j+=1;
			zonesHTML += "<a href=javascript:goIT('"+cType+childs[i][1]+"');> <b>&raquo;</b> "+childs[i][2]+"</a><br>";
			if (j % colSize == 0) zonesHTML += "</td><td>";
		}
	}
	zonesHTML+="</td></tr>";

	if (!exp && childCount > 10) {
		if (getChildsType(type) == 'co') showChildsType = 'countries';
		else showChildsType = 'provinces / states';
		zonesHTML += "<tr><td colspan='3'><a href=javascript:menuOp('"+eid+"',1);><b>+</b> List all " + showChildsType + " in " + name(eid) + "</a><br>";
	}

	zonesHTML+="<tr><td colspan='3'><br><a href=javascript:changeOptionsDisplay('mapa');><font size='-2'><b>&laquo;</b> Back to the map</font></a></td></tr>";
	zonesHTML+="</table>";

	zones.innerHTML = zonesHTML;
}

function goIT(eid) { this.location.href = 'dLI.cfm' + dataIT(eid); }
function adIT(eid) { this.location.href = 'dSE.cfm?location=' + eid; }

function dataIT(eid) {
	type = getType(eid);
	code = getCode(eid);

	if (type == 'co') urlP = '?co='+code;
	else if (type == 're') urlP = '?re='+code;
	else {
		urlP = '?co=' + parentID(eid);
		if (code == 'NA' || code == 'LO') urlP += '&dif=' + code;
		else urlP += '&pr=' + code;
	}

	return urlP + '&OrdC=Rank';
}