function hourbox()
{
var tt=""
for (i=0;i < 24; i++)
	{if(i==12){tt=tt+"<option value="+i+" selected>"+i+"</option>"}else{tt=tt+"<option value="+i+">"+i+"</option>"};}
document.write(tt)	
}
function minutebox()
{
var tt=""
for (i=1;i < 60; i++)
	{if(i==30){tt=tt+"<option value="+i+" selected>"+i+"</option>"}else{tt=tt+"<option value="+i+">"+i+"</option>"};}
document.write(tt)	
}
function chickthis(time,name,id)
{
	window.parent.document.getElementById("CheckInDate").value=time;
	window.parent.document.getElementById("festivalname").innerText=name;
	window.parent.document.getElementById("festivalid").value=id;
}
function buttonnext()
{
	var ttime=document.getElementById("CheckInDate").value+" "+document.getElementById("tt").value+":"+document.getElementById("ff").value+":00";
	var sid=document.getElementById("festivalid").value;
	if(document.getElementById("CheckInDate").value.length==0)
	{alert("请先选择发送时间！");return false;}
	if(sid==0)
	{window.location.href="http://www.afu365.com/j/default.shtml?totime="+escape(ttime);}
	else
	{window.location.href="http://www.afu365.com/j/"+sid+".shtml?totime="+escape(ttime);}
}
function format()
{
	document.getElementById("CheckInDate").value="";
}
