I think this should do nicely (not perfectly--wordwrap() as used below does not always split text evenly--but close). Add the following just after the start of The Loop in your Page template:
<?php
$numchars = strlen($post->post_content);
$content = wordwrap($post->post_content, $numchars/2, "{{break}}");
$content = split("{{break}}", $content);
?>
Then (again in your template) within each column, you want to replace the_content() template tag with these:
First column:
<?php echo apply_filters('the_content', $content[0]); ?>
Second column:
<?php echo apply_filters('the_content', $content[1]); ?>