You can planarize any graph really quickly by doing the following:
(1) randomly layout the graph on a plane
(2) calculate where edges cross
(3) create pseudo-vertices at the crossings (this is what you anyway do when you use planarity based layout for non-planar graphs)
(4) the graph extended with the new vertices and split edges is automatically planar.