function url2cmd(url) {
    if (!url.match(/^https:\/\/v\-nyappon\.net\/shop\/bf\/products\/detail\.php\?product\_id\=([0-9]+)/)) {
        try { pne_url2a(url); } catch(e) { document.write('<a href="'+url+'" target="_blank">'+url+'</a>'); }
        return;
    }
    var id1= RegExp.$1;
    main(id1, url);
}
function main(id1) {
    if (!id1.match(/^[a-zA-Z_0-9]+$/)) {
        return;
    }

var html = '<iframe width="312" height="176" src="http://bumpy-records.com/thumb/bf'
 + id1 + '.html" scrolling="no" style="border:solid 1px #CCC;" frameborder="0">' + '</iframe>'
    document.write(html);
}

