	function callList() {
		url ="/e/event_xmls/news.xml?chashe=" + (new Date()).getTime();
		myAjax = new Ajax.Request (url,
		{method:'get',onComplete:function(httpObj)
			{
				XML = httpObj.responseXML;
				itemTag = XML.getElementsByTagName("LIST");
				newsTag = itemTag[0].getElementsByTagName("news");

//				cnt = newsTag.length - 1;
				cnt = newsTag.length;
				//降順
				columDsiplay = '';
//				for (i=cnt; i>=0; i--) {
				for (i=0; i<cnt; i++) {
					id = newsTag[i].getAttribute("id");
					date = newsTag[i].getAttribute("date");
					url = newsTag[i].getAttribute("url");
					title = newsTag[i].firstChild.nodeValue;

					columDsiplay 	+= '<div class="whatxnew_clum">';
					columDsiplay 	+= '	<div class="whatxnew_mmdd">' + date + '</div>';
					if (url) {
						columDsiplay 	+= '	<div class="whatxnew_text"><a href="'+url+'">' + title + '</a></div>';
					} else {
						columDsiplay 	+= '	<div class="whatxnew_text">' + title + '</div>';
					}
					columDsiplay 	+= '</div>';
					columDsiplay 	+= '<div class="c-both"></div>';
				}
				$('whatxnew_body').innerHTML = columDsiplay;
			}
		});
	}

	function callTags() {
		url ="/pub/tagList.html?chashe=" + (new Date()).getTime();

		myAjax = new Ajax.Request (url,
		{method:'get',onComplete:function(httpObj){
				$('tag_list').innerHTML = httpObj.responseText;
			}
		});
	}

	function callPUP() {
		callAjaxResult('./script/pickup_pages.php?chashe=' + (new Date()).getTime(), 'PUP_List');
	}

	function callPUM() {
		callAjaxResult('./script/pickup_movie.php?chashe=' + (new Date()).getTime(), 'PUM_List');
	}

	function callRecent5() {
		callAjaxResult('./script/recent5_movie.php?chashe=' + (new Date()).getTime(), 'recent5');
	}

	function callAjaxResult (url, place) {
		$(place).innerHTML = '現在検索中です･･･';
		myAjax = new Ajax.Request (url,
		{method:'get',onComplete:function(httpObj){
				$(place).innerHTML = httpObj.responseText;
			}
		});
	}

	function mlForm() {
		mlDsiplay 	= '<form name="ml" action="./script/mlInsert.php" method="post">';
		mlDsiplay 	+= '<a href="javascript:OnClick=mlInsert()"><img src="/img/entry_btn.gif" border="0" alt="登録" id="mailmag_btn"></a>';
		mlDsiplay 	+= '<input type="text" id="mail_add" name="mail_add">';
		mlDsiplay 	+= '<font id="e-mail">Eメール</font>';
		mlDsiplay 	+= '<div align="center"><a href="./mail_kaijo/">解除はこちらから</a></div>';
		$('mailmag_box').innerHTML = mlDsiplay;
	}

	function mlInsert (em) {
		em = document.getElementById("mail_add").value;

		if (!em) {
			alert("メールアドレスを入力してください");
			return false();
		} else if (!em.match(/[!#-9A-~]+@+[a-z0-9]+.+[!#-9A-~]/i)){
			alert("メールアドレスを正しく入力してください");
			return false();
		}

		url ='./script/mlInsert.php?em='+em+'&chashe=' + (new Date()).getTime();

		myAjax = new Ajax.Request (url,
		{method:'get',onComplete:function(httpObj){
				$('mailmag_box').innerHTML = httpObj.responseText;
			}
		});
	}

	function callRanking(mode, catid) {
		switch(mode) {
		case '1w':
			rankperiod_text = '一週間のランキング';
			break;
		case'1m':
			rankperiod_text = '一ヶ月のランキング';
			break;
		default:
			rankperiod_text = '今日のランキング';
			break;
		}

		$('rankperiod').innerHTML = rankperiod_text;

		url ='/pub/cat'+catid+'_'+mode+'.html?chashe=' + (new Date()).getTime();

		myAjax = new Ajax.Request (url,
		{method:'get',onComplete:function(httpObj){
				$('rank_list').innerHTML = httpObj.responseText;
			}
		});
	}
