setting up div

setting up div

trying to make html page with 2nd page caller having div inside the content area. somehow i isnt display properly. sharing code here.

for the information it shows it has flash (Don't Worry) it interprete through js file and shows JS player instead flash.

actaully i want to show 100% height and width filling up space between header and footer of the player.
Here is the code of html : 

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="viewport" content="target-densitydpi=device-dpi, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0" />
  6. <meta name="apple-mobile-web-app-capable" content="yes" />
  7. <title>jQuery Mobile Page</title>
  8. <link rel="stylesheet" href="jquery.mobile-1.0a3.css" />
  9. <script type="text/javascript" src="jquery-1.5.1.min.js"></script>
  10. <script type="text/javascript" src="jquery.mobile-1.0a3.min.js"></script>
  11. <style>
  12. html { height:100%; }
  13. body { height:100%; overflow: hidden; margin:0; padding:0; font-family:Arial, Helvetica, sans-serif; font-size:16px; color:#FFFFFF; background-color:#000000; }
  14. a{ color:#AAAAAA; text-decoration:underline; }
  15. a:hover{ color:#FFFFFF; text-decoration:underline; }
  16. </style>
  17. </head>
  18. <body>


  19. <!-- Start of first page --> 
  20. <div data-role="page" id="Home" data-theme="a"> 
  21.  
  22. <div data-role="header"> 
  23. <h1>Home</h1> 
  24. </div><!-- /header --> 
  25.  
  26. <div data-role="content" data-theme="a">

  27. <div data-role="navbar">
  28. <ul>
  29. <li><a href="a.html" class="ui-btn-active">One</a></li>
  30. <li><a href="b.html">Two</a></li>
  31. </ul>
  32. </div><!-- /navbar -->


  33. <p>Hello world</p>
  34. <ul data-role="listview" data-inset="true" data-theme="c">
  35. <li><a href="#Products">Products</a></li>
  36. <li><a href="#Services">Services</a></li>
  37. <li><a href="#about">About us</a></li>
  38. <li><a href="#contact">Contact</a></li>
  39. </ul>
  40. </div><!-- /content --> 
  41. <div data-role="footer" data-position="fixed" data-theme="a"> 
  42. <h4>Testing</h4> 
  43. </div><!-- /footer --> 
  44. </div><!-- /page --> 


  45. <!-- Start of second page --> 
  46. <div data-role="page" id="Products" data-theme="a"> 
  47.  
  48. <div data-role="header"> 
  49. <h1>Products</h1> 
  50. </div><!-- /header --> 
  51.  
  52. <div data-role="content" >
  53. <script src="pano.js"></script>
  54. <div id="pano" style="width:100%; height:100%;">
  55. <noscript>Javascript not activated</noscript>
  56. <script>
  57. embedpano({swf:"krpano.swf", xml:"ERbr.xml", target:"pano"});
  58. </script>
  59. </div>
  60. </div><!-- /content --> 
  61. <div data-role="footer" data-position="fixed" data-theme="a"> 
  62. <h4>Products</h4> 
  63. </div><!-- /footer --> 
  64. </div><!-- /page --> 

  65. </body>

  66. </html>
Please guide.