// JavaScript Document
function mostrarAmpliacion (Imagen)
{Cadena = "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"><html xmlns=\"http://www.w3.org/1999/xhtml\"><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\" /><title>AULA VIRTUAL DE LA CIUDAD DE MADRID</title><link rel=\"stylesheet\" href=\"estilos/interior.css\" type=\"text/css\" /><link href=\"estilos/interior.css\" rel=\"stylesheet\" type=\"text/css\"></head><body><table align = \"center\" border=\"0\"><tr><td height=\"50\">&nbsp;</td></tr><tr><td><img src=\"" + Imagen + "\" alt=\" \" longdesc=\" \" /></td></tr><tr><td><div align=\"center\"><a href=\"javascript:history.go(-1)\"><h3>Volver</h3></a></div></td></tr></table></body></html>";
document.open();
document.write (Cadena);
document.close();
}
