Well, you shouldn't have a blank page named blank_page. The browser might not know what to do with it. You should do like blank_page.htm. But it would really be easier and make more sense to just have a blank blue div there instead of:
Code:
<!-- Show the price information when link clicked -->
<div class="price" id="content_price">
<object data="" type="text/html" name="foo" width="300" height="520" align="center" id="foo">
</object>
<!-- end of price and information screen -->
</div><!-- end content_price -->
Do this:
Code:
<!-- Show the price information when link clicked -->
<div class="price" id="content_price">
<div style="width: 300px; height: 520px; background-color: blue; margin: 0 auto;">
</div>
<!-- end of price and information screen -->
</div><!-- end content_price -->
The highlighted part gets overwritten anyway. It gets replace, not modified, so you can have anything you want there. When the button is clicked, a new object tag will replace it.
Bookmarks