function cambiaTamanoDamas(){ 

  if (document.images) {
    document.images.damafoto.width=140;
    document.images.damafoto.height=210;

  } else {
    damafoto = document.getElementById("damafoto");
    damafoto.width = 140;
    damafoto.height = 210;
	
  }
}
function cambiaTamanoChica(){ 

  if (document.images) {
    var ancho = document.images.damafoto2.width;
      if (ancho>450) {
	  document.images.damafoto2.width=315;
    document.images.damafoto2.height=210;
	document.images.fotoficha1.width=250;
    document.images.fotoficha1.height=375;	  
	  }else{   
  
    document.images.damafoto2.width=140;
    document.images.damafoto2.height=210;
	document.images.fotoficha1.width=250;
    document.images.fotoficha1.height=375;
	}
  } else {
      var ancho = document.getElementById("damafoto2").width;
      if (ancho>450) {
	   damafoto2 = document.getElementById("damafoto2");
    damafoto2.width = 315;
    damafoto2.height = 210;
	fotoficha1 = document.getElementById("fotoficha1");
    fotoficha1.width = 250;
    fotoficha1.height = 375;
	  
	  } else {
  
     damafoto2 = document.getElementById("damafoto2");
    damafoto2.width = 140;
    damafoto2.height = 210;
	fotoficha1 = document.getElementById("fotoficha1");
    fotoficha1.width = 250;
    fotoficha1.height = 375;
	}
  }
}
