susana:
la script que pasaste está plagada de errores, este es solo un fragmento
dónde dice:
Código Javascript
:
Ver originalfunction zoomhelper(){
if (parseInt(whatcache.style.width)>10&&parseInt(what cache.style.height)>10){
whatcache.style.width=parseInt(whatcache.style.wid th)+parseInt(whatcache.style.width)*zoomfactor*pre fix
whatcache.style.height=parseInt(whatcache.style.he ight)+parseInt(whatcache.style.height)*zoomfactor* prefix
}
}
debe decir:
Código Javascript
:
Ver originalfunction zoomhelper(){
if ((parseInt(whatcache.style.width)>10)&&(parseInt(whatcache.style.height)>10)){
whatcache.style.width=parseInt(whatcache.style.width)+parseInt(whatcache.style.width)*zoomfactor*prefix;
whatcache.style.height=parseInt(whatcache.style.height)+parseInt(whatcache.style.height)*zoomfactor*prefix;
}
}
y habia unos cuantos más...
al clickear en la imagen inferior te lleva a coordenadas2.php, por otra parte en ese form tan extraño que has implementado, no encuentro dato alguno que pasar al coordenadas2.php.
Te dejo una demo del efecto funcionando en
http://foros.emprear.com/html/susana_18/zoom.html
el efecto es medio raro, bueno, al menos con las imágenes que puse, espero no seas pretenciosa.
Ah, y trata de no usar BMP, JPG preferiblemente
Saludos