That only appears to be an issue in IE 8 and less. You might be able to use an iframe for it instead of an object and have it be covered by the drop downs, but I'm not sure. On the top page, instead of:
Code:
<script type="text/javascript">
//<![CDATA[
// written by: Coothead
function updateObjectIframe(which){
document.getElementById('content_price').innerHTML = '<'+'object id="foo" name="foo" height="575" width="300" type="text/html" data="'+which.href+'"><\/object>';
}
//]]>
</script>
try:
Code:
<script type="text/javascript">
//<![CDATA[
// written by: Coothead
function updateObjectIframe(which){
document.getElementById('content_price').innerHTML = '<'+'iframe id="foo" name="foo" height="575" width="300" src="'+which.href+'"><\/iframe>';
}
//]]>
</script>
It may have to be tweaked to make sure there are no scrollbars. But just check to see if it takes care of the problem or not first.
The browser cache may need to be cleared and/or the page refreshed to see changes.
Bookmarks