/*ターゲットウインドウ指定用のチェックボックスを表示*/
function onload_target(value,URL){
var checkbox = "checkbox"+value;
if( value == "link" ){
var URL = '"'+URL+'"';
document.write(
   '<a onclick=\'return illust_open(',
   URL,
   ',"link")\' href="#" title="別窓で表示">',
   '<img src="http://saishiki.sho-da.net/image/link_newwindow.gif" width="13" height="14" />',
   '</a>');
return;
}
document.write(
   '<ul class="ex_notes"><li id="OPEN-WINDOW">',
   '<a onClick="return link_target()" href="#">',
   '<img src="http://saishiki.sho-da.net/image/checkbox_n.gif" width="14" height="14" name="',
   checkbox,
   '" />',
   '作品を別窓で開く',
   '</a>',
   '</li></ul>');
if(target == "new"){
   if(value == 1 )	document.checkbox1.src = checkbox_img[1];
   else document.checkbox2.src = checkbox_img[1];
}else{
   if(value == 1 ) document.checkbox1.src = checkbox_img[0];
   else document.checkbox2.src = checkbox_img[0];
}
}

/*作品を新しいウィンドウで開く*/
function illust_open() {
    return false;
}

function illust_open(URL,link) {
   if(link == "link" ){
   links = open(URL,'links');
   window.links.focus();
   return(false);
   }
   else if(target == "new"){
   exhibition=open(URL,'exhibition');
   window.exhibition.focus();
   return(false);
   }else{
   document.href=URL;
   }
}

