function BeforeChristmas(){
  var iLastTime = Date.UTC(2011,11,27,23,59,59);
  var oNow = new Date();
  var iNow = Date.UTC(oNow.getFullYear(),oNow.getMonth(),oNow.getDate(),
      oNow.getHours(),oNow.getMinutes(),oNow.getSeconds());
  
  return iLastTime > iNow; 
}


function insertPromotionDiv(){
		var divList=document.getElementsByTagName('div');
		var topDiv=null;
		var image=null;
		var promotionDiv=document.createElement("DIV");
		promotionDiv.id='promotionDiv';
		promotionDiv.innerHTML='<a href="/xmas2011"><img src="/xmas2011/xmasbar.jpg" width="758" height="118" border=0></a>';
		for(var i=0;i<divList.length-1;i++){
			if(divList[i].className=='top-image'){
				topDiv=divList[i];
				break;
			}
		}
		if(topDiv){
			image=topDiv.children[0];
			if (image)
				if (image.src.indexOf('top-inner')>0)
					topDiv.replaceChild(promotionDiv,image)

		}	
}
function Load()
{
	redirectjp();
	cl();
//	if (BeforeChristmas())	 insertPromotionDiv();
}

window.onload=Load;
