﻿// Archivo JScript

/* 
 * Change county image onmouseover on index page 
 */
function change_image (region) {
	var ShowItem = document.getElementById("county_image");
	//var LinkItem = document.getElementById("county_" + region);
	ShowItem.style.backgroundImage = 'url(/plantillas/ppceditorial/img/mapa/ptosdeventa_' + region + '.gif)';
	//LinkItem.style.textDecoration = "underline";
	return true;
}

/* 
 * Change back county image onmouseout on index page
 */ 
function hide_image (region) {
	var ShowItem = document.getElementById("county_image");
	//var LinkItem = document.getElementById("county_" + region);
	ShowItem.style.backgroundImage = 'url(/plantillas/ppceditorial/img/mapa/ptosdeventa_none.gif)';
	//LinkItem.style.textDecoration = "none";
	return true;
}
