function doProductDownload(in_product_download_list) {
	
	var target_url = null;

	switch(in_product_download_list.value) {
		case 'product-downloads-01':
			alert("download brochure");
			target_url = "";

			break;
		case 'product-downloads-02':
			alert("download investment fact sheet");
			target_url = "";

			break;
		case 'product-downloads-03':
			alert("download product summary");
			target_url = "";

			break;
		case 'product-downloads-04':
			alert("download online presentation");
			target_url = "";

			break;
		case 'product-downloads-05':
			alert("download online presentation");
			target_url = "";

			break;
		default:
			// do nothing
	}

	if(target_url != null) {
		window.open(target_url, '_blank');
		//window.location.href = target_url;
	}
}

function show(x){
	var id=document.getElementById(x);
	id.style.visibility="visible";
}

function hide(x){
	var id=document.getElementById(x);
	id.style.visibility="hidden";		
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}