// ----------------------------------------------------------------------

function SetImgOn(img){
	img.src = img.src.replace(img.name + "_off", img.name + "_on");
}

// ----------------------------------------------------------------------

function SetImgOff(img){
	img.src = img.src.replace(img.name + "_on", img.name + "_off");
}

// ----------------------------------------------------------------------

function SetSharedImgOn(img, name){
	img.src = img.src.replace(name + "_off", name + "_on");
}

// ----------------------------------------------------------------------

function SetSharedImgOff(img, name){
	img.src = img.src.replace(name + "_on", name + "_off");
}

// ----------------------------------------------------------------------

function SetMenuFrameOpen(){
		parent.fsGlobal.cols = "164, *";
}

// ----------------------------------------------------------------------

function OpenMenuFrame(i){
	i = i + 4;
	
	if(i <= 164){
		parent.fsGlobal.cols = i + ", *";
		setTimeout("OpenMenuFrame(" + i + ")", 10);
	}
	else{
		location.href = "contactos.html";
	}
}
  	
// ----------------------------------------------------------------------

function CloseMenuFrame(i){
	i = i - 4;
	
	if(i >= 0){
		parent.fsGlobal.cols = i + ", *";
		setTimeout("CloseMenuFrame(" + i + ")", 10);
	}
	else{
		location.href = "entrada.html";
	}
}
// ----------------------------------------------------------------------