function url2cmd(url) {
if (!url.match(/^http:\/\/(?:com\.|)nicovideo\.jp\/community\/([a-zA-Z0-9]+)/)) {

html = '<a href="'+url+'">'+url+'</a>';
document.write(html);
return;

} else {
var id = RegExp.$1;
main(id);
}
}

function main(id) {
if (!id.match(/^[a-zA-Z0-9]+$/)) {
html = '<a href="'+url+'">'+url+'</a>';
document.write(html);
return;
}

html = "";
html += '<div style="width:318px; border:solid 1px #CCC;">';
html += '<a href="http://com.nicovideo.jp/community/' + id + '" target="_blank">http://com.nicovideo.jp/community/' + id + '</a><br>' ;
html += '</div>';
html += '<div style="width:318px; border:solid 1px #CCC;">';
html += '<iframe src="';
html += 'http://ext.nicovideo.jp/thumb_community/';
html += id;
html += '" width="100%" height="198" scrolling="no" border="0" frameborder="0">';
html += '<a href=" http://com.nicovideo.jp/community/' + id + '" target="_blank"> http://com.nicovideo.jp/community/' + id + '</a><br>' ;
html += '</iframe>';
html += '</div>';
document.write(html);
}

