Hola
Bueno, aquí te dejo un sencillo ejemplito:
Código:
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="es">
<head>
<script type="text/javascript">
<!--
function alto_ancho() {
alert('ancho = '+document.getElementById('imagen_00').width+'px.');
alert('alto = '+document.getElementById('imagen_00').height+'px.');
}
//-->
</script>
<title>Obtener alto y ancho de una imagen</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<body onload="javascript:alto_ancho()">
<div>
<img src="cine.gif" width="100" height="50" id="imagen_00" alt="" />
</div>
</body>
</html>
Espero que te sirva...
Felicidad