/***********************************************
* NHK Custom Profile Fields - Written by NHK(NG HUI KUNG)
***********************************************/
var path = 'style_images/nhk_cpf_img/';
function signs_pop(){
	window.open('style_images/nhk_cpf_img/whatyoursign.htm','Signs','width=200,height=185,resizable=yes,scrollbars=no');
}

function nhk_cpf_img(img,fmobj,url){
	img.src = path+url+fmobj.options[fmobj.selectedIndex].value+'.gif';
}

function ajaxRead(file){
	var xmlObj = null;
	if(window.XMLHttpRequest){
		xmlObj = new XMLHttpRequest();
	} else if(window.ActiveXObject){
		xmlObj = new ActiveXObject("Microsoft.XMLHTTP");
	} else {
		return;
	}
	xmlObj.onreadystatechange = function(){
		if(xmlObj.readyState == 4){
			processXML(xmlObj.responseXML);
		}
	}
	xmlObj.open ('GET', file, true);
	xmlObj.send ('');
}

function processXML(obj){
	var dataArray = obj.getElementsByTagName('country');
	var dataArrayLen = dataArray.length;
	var insertData = '<select name="location">';
	for (var i=0; i<dataArrayLen; i++){
		if(dataArray[i].tagName){
			insertData += '<option value="' + dataArray[i].getAttribute('type') + '">' +  dataArray[i].getAttribute('tasks') + '</option>';
		}
	}
	insertData += '</select>';
	document.getElementById ('dataArea').innerHTML = insertData;
}