<!--
f = document.myform;
myDate = new Date();
var tmp = f.checkInY.length;
if(tmp > 1){
	for(i=0;i<tmp;i++){
		var obj = f.checkInY.options[i];

		if(obj.value == myDate.getFullYear()){obj.selected = true;}
	}
}else{
	var obj = f.checkInY.options[0];
	if(obj.value == myDate.getFullYear()){obj.selected = true;}
}
var tmp = f.checkInM.options.length;
if(tmp > 1){
	for(i=0;i<tmp;i++){
		var obj = f.checkInM.options[i];
		if(obj.value == (myDate.getMonth() + 1)){obj.selected = true;}
	}
}else{
	var obj = f.checkInM.options[0];
	if(obj.value == (myDate.getMonth() + 1)){obj.selected = true;}
}
var tmp = f.checkInD.options.length;
if(tmp > 1){
	for(i=0;i<tmp;i++){
		var obj = f.checkInD.options[i];
		if(obj.value == myDate.getDate()){obj.selected = true;}
	}
}else{
	var obj = f.checkInD.options[0];
	if(obj.value == myDate.getDate()){obj.selected = true;}
}
// -->
