I need to calculate the surface integral of $F(x,y,z) = \hat i x +\hat j y + \hat k z$ on the curved part of surface $x^2+z^2 = 1, x+y=2, $ and $y$ goes from $1$ to $3$ as shown in following figure. How do I evaluate $\displaystyle \iint_S \vec F .\hat n ds$ this surface?

EDIT::I couldn't do it via parametrization, I got the above figure which is incorrect. Using this formula $\iint_s \vec F \cdot \frac{\nabla \phi }{|\nabla \phi|}\sqrt{1 + (z_x)^2 + (z_y)^2} dx dy$ I got the following. Not sure if it's correct. $$\int_1^3 \;dy \int_{-1}^{2-y} \vec F(x, y , \sqrt{1-x^2})\cdot \frac{x \hat i + \sqrt{1-x^2}\hat k}{\sqrt{1-x^2}} dx \\ + \int_1^3 \;dy \int_{-1}^{2-y} \vec F(x, y , -\sqrt{1-x^2})\cdot \frac{x \hat i - \sqrt{1-x^2}\hat k}{\sqrt{1-x^2}} dx$$
ParametricPlot3D[{Cos[x] , t, Sin[x]}, {t, 1, 3}, {x, ArcTan[(3 - t) (t - 1)/(2 - t)], 2 \[Pi] - ArcTan[(3 - t) (t - 1)/(2 - t)]}]and the picture like this pops up. Anyway thank you for your time and effort. this is something that is still amiss. – hasExams May 31 '13 at 13:19ParametricPlot3D[{Cos[\[Theta]] , Sin[\[Theta]], t}, {t, 1, 3}, {\[Theta], ArcTan[Sqrt[(3 - t) (t - 1)/(2 - t)]], 2 \[Pi] - ArcTan[Sqrt[(3 - t) (t - 1)/(2 - t)]]}]I am getting this – hasExams May 31 '13 at 13:34