function resizepic(o)
{ 
var maxwidth=545;  
var maxheight=720; 
var a=new Image();
a.src=o.src
if(a.width > maxwidth)
{
  o.style.width=maxwidth;
}
if (a.height> maxheight)
{
  o.style.height=maxheight;
 }
}