function resizeit_article_image_width(imagepath,imgctrl,imgwidth)
	{
	
    var imgname=imagepath;
        //get image width and height
        var newImg = new Image();
        newImg.src = imagepath;
        var height = newImg.height;
        var width = newImg.width;
       
        //check if width exceeds
        if(width>imgwidth)
        {
        document.getElementById(imgctrl).width=imgwidth;
        var newheight;
        newheight=(height/width)*imgwidth; //Resize image in proportion
        document.getElementById(imgctrl).height = newheight;
        }
        document.getElementById(imgctrl).border="0"; 
	}
	
	function resizeit_article_image(imagepath,imgctrl)
	{
	
    var imgname=imagepath;
        //get image width and height
        var newImg = new Image();
        newImg.src = imagepath;
        var height = newImg.height;
        var width = newImg.width;
       
        //check if width exceeds
        if(width>550)
        {
        document.getElementById(imgctrl).width="550";
        var newheight;
        newheight=(height/width)*550; //Resize image in proportion
        document.getElementById(imgctrl).height = newheight;
        }
        document.getElementById(imgctrl).border="0"; 
	}
	

