<!--
// All JavaScripts contained herein are
// Copyright 2006 - SiempreGente.com
// All rights reserved.
// Commercial distribution or modification prohibited without
// express written permission.

function changeImage(objImagen, strName)
{ 
	window.document[objImagen].src="images/" + strName
}

function resaltarAllStyle(objImagen, strName, intType)
{ 
	var strNewColor = "";
	
	gintColorAnterior = gintColorAnterior * 1;
	if(gintColorAnterior>0 && gintColorAnterior<=4){
		strNewColor = "_" + gintColorAnterior;
	}else{
		strNewColor = "_1";
	}
	strName = strName.replace("_1", strNewColor);
	window.document[objImagen].src= strName;
}

function normalAllStyle(objImagen, strName)
{
	var strNewColor = "";
	
	gintColorAnterior = gintColorAnterior * 1;
	if(gintColorAnterior>0 && gintColorAnterior<=4){
		strNewColor = "_" + gintColorAnterior;
	}else{
		strNewColor = "_1";
	}
	strName = strName.replace("_1", strNewColor);
	window.document[objImagen].src= strName
}
//-->