// last update 2009-11-25
// COPYRIGHT(C)an-gel.jp.ALL RIGHTS RESERVED.
// Editor - studio CLOVER - www.with-clover.com.


window.onload = function() {
var w = 370;
var h = 400;
var node_a = document.getElementsByTagName('a');
for (var i in node_a) {
if (node_a[i].className == 'twindow') {
node_a[i].onclick = function() {
window.open(this.href, '', 'scrollbars=0,toolbars=0,location=0,status=0,menubar=0,resizable=1,width=' + w + ',height=' + h);
return false;
};
}
}
};
