function showImage(strSrc, width, height)
{
	var objWin = window.open("ViewImage.aspx?src=" + strSrc + "&Width=" + width + "&Height=" + height,"WinPic","width=" + width + ", height=" + (height + 30)+ ", status=no, toolbar=no, address=no, scroll=no");
	objWin.focus();
}

