/*
 * Load the correct research task page  into current frame for IEA Web Site
 * Author: Thanh Nguyen (soa_clown@hotmail.com)
 */
var theURL = new Array(
"01",
"02",
"03",
"04",
"05",
"06",
"07",
"08",
"09",
"10",
"11",
"12",
"13",
"14",
"none",
"16",
"17",
"18",
"19",
"20",
"../task21/index.html",
"../task22/index.html",
"../task23/index.html",
"http://www.iea-shc.org/task24/index.html",
"../task25/index.html",
"../task26/index.html",
"http://www.iea-shc-task27.org",
"../task28/index.html",
"../task29/index.html",
"none",
"../task31/index.html"
)

function jumpLink(that){
 var destination = new Number(that.options[that.selectedIndex].value);
	if (destination!="") 
			if (theURL[destination-1].length==2)
		     document.location.href = "task" + theURL[destination-1] + "_page.htm"; 
			else
	  	      window.open(theURL[destination-1]);
}