function openWin(veg)
	{
	var width = 400;
	var height = 480;
	var intScrWidth = (window.screen.width - width)/2;
    	var intScrHeight = (window.screen.height - height)/2;
	var newWin = window.open("viewImg.asp?img="+veg+"","","width = "+width+", height = "+height+", toolbar = 0, location = 0, directories = 0, status = 0, menubar = 0, scrollbars = 1, resizable = 1, copyhistory = 0, left = " + intScrWidth + ",top = " + intScrHeight + ", screenX = " + intScrWidth +", screenY =" + intScrHeight);
	newWin.focus();
	}	
