// JavaScript Document

function backnumber(num) {
	theURL = num + '.html';
	location.href = theURL;
}

function blog(theDate,thePage) {
	thePath = 'http://morningmanga.com/mikakosan/images/' + theDate + '/' + thePage + '.jpg';
	theCode = '<a href="http://morningmanga.com/mikakosan/"><img src="' + thePath + '" alt="今日マチ子 みかこさん" /></a>';
	var isMSIE = /*@cc_on!@*/false;
	if (isMSIE) {
    	clipboardData.setData("Text", theCode);
		alert('HTMLタグがクリップボードにコピーされました。そのままブログに貼り付けてお使いください。');
	} else {
		alert('以下のHTMLタグをコピーして、そのままブログに貼り付けてお使いください。\n\n' + theCode);
	}
}
