// JavaScript Document

/********** Don't touch the lines below. ************/
var addImage = new Array();

function AddPool(image, url)
{
	var arrayVal = "<tr><td align='right' valign='top' style='padding-right:2px'><br><a href='"+url+"' target='_blank'><img src='"+image+"' width='143' border='0'></a></td></tr>";	
	addImage[addImage.length] = arrayVal;
}

/********* Add image name with path in the following function with a new line. 
It means add a line below the lines and change the image name with correct 
path in the function also add the destination URL of the link. This path must 
be the absolute path of the image. 
*****************/

AddPool("http://www.snowjapan.com/e/shigakogen.jpg", "http://www.snowjapan.com/e/spotlight/shiga-kogen.html");
AddPool("http://www.snowjapan.com/e/mount-naeba-kagura.jpg", "http://www.snowjapan.com/e/spotlight/mount-naeba.html");
AddPool("http://www.snowjapan.com/e/hotel/hakuba-tourism.jpg", "http://www.hakubatourism.com");
AddPool("http://www.snowjapan.com/e/nozawa-onsen.jpg", "http://www.nozawaski.com/e/index.html");
AddPool("http://www.snowjapan.com/e/madarao-kogen.jpg", "http://www.snowjapan.com/e/spotlight/madarao-kogen.html");
AddPool("http://www.snowjapan.com/e/myoko-niigata.jpg", "http://myoko.tv/foreign/english/");
AddPool("http://www.snowjapan.com/e/services/hsbc.gif", "http://www.hsbc.co.jp/1/2/hsbc-premier/special-offer/oao-150-campaign?WT.ac=TKY_PWS_Country_L1_EN_JPY_New_TMD150_AccountOnline");

var PoolNo = addImage.length-1;