// JavaScript Document
function resizeImg(imgid,mw,mh)
{
	//alert("img");
	var imgP=document.getElementById(imgid.id);
	//alert(imgid);
	var k=0;
	if(imgP.width>mw)
	{
		imgP.width=mw;
		k=1;
	}
	if(imgP.height>mh&&k==0)
	{
		imgP.height=mh;
	}
}
