Where you have (highlighted, scroll the code block to see it):
Code:
Door Size details<font color="#CC0000">*</font>:
</td><td vAlign="top"><a href="javascript:void(0);" onClick="javascript:OpenNewWindow('help_options.asp?ID=14', 350, 250);"
>
<img clas="vCSS_img_help_options" src="v/vspfiles/templates/137/images/Icon_Help_Options.gif" border="0"></a></td><td>
<SELECT name="SELECT___001___14" onChange="change_option('SELECT___001___14',this.options[this.selectedIndex].value)">
<OPTION value="0" >.</OPTION>
<OPTION value="55" SELECTED>Small (5 1/2 x 7 1/2)</OPTION>
<OPTION value="56" >Small Medium (6 1 . . .
350 is the width and 250 is the height. Adjust to suit.
If you can't do that, put this script on the page:
Code:
<script type="text/javascript">
jQuery(function($){
$('a[onclick$="350, 250);"]').each(function(){
var fstr = String(this.onclick);
this.onclick = null;
$(this).click(new Function('(' + fstr.replace(/onclick/, '').replace(/350, 250/, '600, 700') + ')();'));
});
});
</script>
The '600, 700' is the new dimensions.
Put the script on the page after this tag which is already in the head of the page:
Code:
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
Oh and if you want to install something like the jQuery based FancyBox:
http://fancybox.net/
you could have the content pop up in a FancyBox box.
Bookmarks