$(document).ready(function(){
maxwidth = screen.availWidth;
maxheight = screen.availHeight;
$("a[href^=http://www.ichijinsha.co.jp/prebrowse/]").each(function(){
url = $(this).attr("href");
$(this).attr("href","javascript:void(0);");
stronclick = "javascript:window.open('"+url+"', 'mywindow1', 'width="+maxwidth+", height="+maxheight+", menubar=no, toolbar=no, scrollbars=yes');"
$(this).attr("onClick",stronclick);
});
});
