// JScript source code
function sobreVinculo(link)
	{
	link.style.color="Green";
	}
function fueraVinculo(link)
	{
	link.style.color="Black";
	}
function carImagen(imagen, tam)
	{
	if (tam==-1)
		{
		var ancho=imagen.width;
		if (ancho>900)
			{
			imagen.width=900;
			}
		else
			{
			imagen.width=ancho;
			}
		}
	else
		{
		imagen.width=tam;
		}
	}
	
function carImagen2(imagen)
	{
		var ancho=imagen.width;
		if (ancho>200)
			{
			imagen.width=200;
			}
		else
			{
			imagen.width=ancho;
			}
	}
//Modificar esta función para capturar la altura

function reducirImagen(imagen)
	{

	var ancho=imagen.width;
	if (ancho>900)
		{
		imagen.width=900;
		}
	}
function abre(Pagina, estatus) 
	{
	window.open(Pagina, estatus, "fullscreen=1");
	}



