myJpeg = new Array(      // 実寸画像のファイル名
 "img/031018a.jpg",
 "img/03101901a.jpg",
 "img/03101902a.jpg",
 "img/03101903a.jpg",
 "img/030502.jpg",
 "img/04032801a.jpg",
 "img/numbernine.gif"
);

myTitle = new Array(     // 画像のタイトル
 "2+2=5プロモ盤ジャケ",
 "2+2=5 CD1ジャケ",
 "2+2=5 CD2盤ジャケ",
 "2+2=5 DVDジャケ",
 "サマソニラインナップ",
 "コム・ラグ特典ポスター",
 "NUMBER[N]INEコラボT"
);

myWidth = new Array(     // 画像の幅(X)
 200,
 200,
 200,
 200,
 300,
 400,
 481
);

myHeight = new Array(    // 画像の高さ(Y)
 200,
 200,
 200,
 200,
 419,
 290,
 218
);

if (navigator.appName == "Microsoft Internet Explorer") myPix=0;
else                                                    myPix=15;

function myGo(myTblNo){
 myXX=myWidth[myTblNo]+myPix;
 myYY=myHeight[myTblNo]+myPix;
 myWin = window.open("" ,"Win"+myTblNo , "width="+myXX+",height="+myYY);
 myWin.document.open();
 myWin.document.write('<html>');
 myWin.document.write('<head>');
 myWin.document.write('<title>' , myTitle[myTblNo] , '<','/title>');
 myWin.document.write('<','/head>');
 myWin.document.write('<body topmargin=0 leftmargin=0>');
 myWin.document.write('<img src=\"' , myJpeg[myTblNo] , '\">' );
 myWin.document.write('<' , '/body>');
 myWin.document.write('<' , '/html>');
 myWin.document.close();
}

function GO(V){
 var FO;
 FO=window.open(V,"newWin","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=350 height=180");
 FO.focus();
}

