
function send_mail_cartoon(sectionId) {
	window.open('./cartoonMenuDetail_openMailPage.action?sectionId='+sectionId,"common", 'width=400,height=600, left=400,screenX=400,resizable=yes,scrollbars=yes,toolbar=yes');
}

function send_print_cartoon(sectionId) {
	window.open('./cartoonMenuDetail_openPrintPage.action?sectionId='+sectionId,"common", 'width=800, height=400, left=250,screenX=250,resizable=yes,scrollbars=yes,toolbar=yes');
}

function getCartoon(page,date,sectionId){
	var id = '#cartoonImg'+sectionId;
	var sendData = 'date='+date+'&sectionId='+sectionId;
	if(page != '') sendData = sendData + '&page='+page;
	$.ajax({
		type: 'GET',
		url: 'cartoonMenuDetail_getNewCartoon.action',
		data: sendData,
		success: function(respond) {$(id).html(respond);}
	});
	return true;
}

function getOtherCartoon(sectionDate,sectionId) {
	$.ajax({
		type: 'GET',
		url: 'cartoonMenuDetail_getOtherCartoon.action',
		data: 'sectionDate='+sectionDate+'&sectionId='+sectionId,
		success: function(respond) {$('#cartoonChange').html(respond);}
	});
}
