function popupCalendar(scroll,width,height,promotion,day,nicedatetime)
{
	var a;
	a = width / 2;
	var b;
	b = height / 2;	
	var LeftPosition = (screen.width/2) - a;
	var TopPosition = (screen.height/2) - b;
	
	window.open("/template/popup_calendar.aspx?nicedatetime=" + nicedatetime + "&promotion=" + promotion + "&day=" + day, "", "width="+width+",height="+height+",toolbar=no,header=no,location=no,"+"left="+LeftPosition +",top="+TopPosition+",scrollbars="+scroll);
}

function popupContent(page,scroll,width,height){
	
	var a;
	a = width / 2;
	var b;
	b = height / 2;	
	var LeftPosition = (screen.width/2) - a;
	var TopPosition = (screen.height/2) - b;
	
	window.open(page , "", "width="+width+",height="+height+",toolbar=no,header=no,location=no,"+"left="+LeftPosition +",top="+TopPosition+",scrollbars="+scroll);
}