e=4; //リンク先の数を設定します（ここでは４個）。

e=e-1;
url=new Array(e);
text=new Array(e);

//　この下には、各リンク用文及びそれに対応するリンク先を設定します。
url[0]="dm.html";
text[0]="ハガキ印刷片面フルカラー<font color=#FF0000>100枚5,643円</font>";

url[1]="poster.html";
text[1]="A5チラシ片面フルカラー<font color=#FF0000>100枚6,562円</font>";

url[2]="card.html";
text[2]="名刺印刷片面４色、3種類同時申込みを<font color=#FF0000>1,000枚9,324円</font>";

url[3]="tag.html";
text[3]="カード印刷片面フルカラー<font color=#FF0000>1,000枚9,712円</font>";

len=(""+e).length;
while(1){
s=eval(ran());
if(s<=e) break;
}
document.write('<A HREF="JavaScript:ten()" onMouseOver="sta()";return true;">');
document.write(text[s]+'</A>');
function ran(){
out="";
for(i=1;i<=len;i++){
while(1){
r=Math.random();
if(r!=1)break;
}
r=""+Math.floor(r*10);
out=out+r;
}
return out;
}
function ten(){
location.href=url[s];
}
function sta(){
window.status=url[s];
t02=setTimeout("sto()",1000);
}
function sto(){
window.status="";
clearTimeout(t02);
}
//