You only need to add the CullMode = None; to the pass.

technique specParallax
{
pass p0
{
ZWriteEnable = True;
AlphaBlendEnable = False;
CullMode = None;

...


Rendering will then be slower because more polygons are rendered. Thats why 2 sided polygons are normally not used for game models, only in special cases like vegetation.