var currentTime = new Date()
var month = currentTime.getMonth() + 1
var day = currentTime.getDate()
var year = currentTime.getFullYear()
if( (year<2008) ||(year==2008 && month==1) || (year==2008 && month==2 && day<=15)){
window.location.href='home.phtml';
} else{
window.location.href='home.php';
}