// JavaScript Document
function noShowLink(marketID) {

		//table of ids
		var idArray = {
			1890: "http://www.disneyonice-asia.com/highschoolmusicaltheicetour/AU_NZ/registration.html", //au
			1888: "http://www.disneyonice-asia.com/register/registration.html   ", //brunei
			1910: "http://www.disneyonice-asia.com/china/registration/registration.html",  //china
			2784: "http://www.disneyonice-asia.com/hongkong/registration/chi/registration.html",  //hk
			2132: "http://www.disneyonice-asia.com/taiwan/register/registration.html",//taiwan
			2138: "http://www.disneyonice-asia.com/korea/register/registration.html",   //korea
			1937: "http://www.disneyonice-asia.com/highschoolmusicaltheicetour/AU_NZ/registration.html",  //nz
			2173: "http://www.disneyonice-asia.com/register/registration.html",  //india
			2162: "http://www.disneyonice-asia.com/register/registration.html",  //indonesia
			1889: "http://www.disneyonice-asia.com/register/registration.html", //maylasia
			1910: "http://www.disneyonice-asia.com/register/registration.html", //macau
			1885: "http://home.disney.co.jp/onlinehelp/membership", //japan
			1909: "http://www.disneyonice-asia.com/register/registration.html",  //philipines  
			1886: "http://www.disneyonice-asia.com/register/registration.html",  //singapore   
			1887:"http://www.disneyonice-asia.com/register/registration.html", //thailand   
			2736:"http://www.disneyonice-asia.com/register/registration.html" //vietnam   
		};
		
		for(key in idArray) {
		if(marketID==key){
		
			if(marketID==1910 || marketID==2132){
			//trad chinese
			var passLink='index_hk.html';
			var clickLink=idArray[key];
				
			}else if (marketID==1910 ){
			//simple chinese
			var passLink='index_cn.html';
			var clickLink=idArray[key];
				
			}else if (marketID==2138 ){
			//korea
			var passLink='index_ko.html';
			var clickLink=idArray[key];
				
			}else if (marketID==1885 ){
			//japanese
			var passLink='index_jp.html';
			var clickLink=idArray[key];
			
			}else{
			//english
			var passLink='index_en.html';
			var clickLink=idArray[key];
			
			};
			//alert("noShows: " +passLink);
		}
			var fullLink=passLink + '?id='+clickLink;
		
		


	}
		return fullLink;
}