//配送料および引き換え代金手数料用
function disp(url){ 
window.open(url, "payment", "width=850,height=900,scrollbars=yes"); 
}

//↓↓↓ 読み込み毎に画像と飛び先を変更 ↓↓↓start
function changeImg(){
	
	//ランダムに画像を表示する
	jmp = new Array();
	img = new Array();
	
	//ジャンプ先のアドレス(数字は画像と対応)
	jmp[0] = "../new_arrival/new_arrival.html";
	jmp[1] = "../online_store/ucs.html";
	jmp[2] = "../partners/official_ucs.html";
	jmp[3] = "../contact/contact_ucs.html";
	
	//画像のアドレス(数字はジャンプ先のアドレスと対応)
	img[0] = "../image/news_image/test_image_a.gif";
	img[1] = "../image/news_image/test_image_b.gif";
	img[2] = "../image/news_image/test_image_c.gif";
	img[3] = "../image/news_image/test_image_d.gif";
	
	n = Math.floor(Math.random()*jmp.length);
}
	
function jump(){
	location.href=jmp[n];
}
	
function image(){
	//document.images["mypic"].src=my_pics[a];
	document.images["banner"].src=img[n];
}
//↑↑↑ 読み込み毎に画像と飛び先を変更 ↑↑↑end