function enlargeImage(t){
   t.height="400";
   t.width="600";
}
function dropImage(t){
   t.height="200";
   t.width="300";
}

function toggleImage(t){

   if(t.height=="200" && t.width=="300")
       {
        t.height="400";
        t.width="600"
        return;}
   if(t.height=="400" && t.width=="600")
      {t.height="200";
       t.width="300"
        return;}

}


