You need to call computeCentroids and computeFaceNormals on your geometry. And even then, the intersection code only works on planar faces. If you need to have non-planar quads in your geometry, you need to use triangles instead. Or fix the bug in Three.js (filed issue at https://github.com/mrdoob/three.js/issues/1357 )
Also, move the renderer.domElement to the top-left of the page.
In short, try this:
var s = renderer.domElement.style;
s.left = s.top = '0px';
s.position = 'absolute';
var planeGeo = new THREE.PlaneGeometry(400, 200, 40, 40);
for ( var i = 0, l = planeGeo.vertices.length; i < l; i ++ ) {
// planar quad faces
var p = planeGeo.vertices[i].position;
p.z = Math.sin(p.y / 20)*40;
}
planeGeo.computeFaceNormals();
planeGeo.computeCentroids();
[update] In the dev branch of Three.js, there's THREE.GeometryUtils.triangulateQuads which you can use as a workaround. It already computes face normals and centroids, so you only need to add this one line to your code:
THREE.GeometryUtils.triangulateQuads(planeGeo);