// JavaScript Document



function resizeme(idimagen) 
{
  if (document.getElementById(idimagen).width > 410) 
  {
  document.getElementById(idimagen).width=410;
  }
  
}