The biggest mistake is twice
<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?sensor=false"></script>
Just because you need 2 maps you cannot write same thing twice.
Secondly there is only one window.onload event on page hence you cannot write two.
Hence put both maps javascript in two functions and call them in one window.onload event
window.onload = function()
{
Func1();
Func2();
};
Finally make sure that all JavaScript functions have different names