﻿window.onload = function() {
var node_a = document.getElementsByTagName('a');
for (var i in node_a) {
if (node_a[i].className == 'other') {
node_a[i].onclick = function() {
window.open(this.href, '', 'width=500,height=550,scrollbars=yes,location=no,resizable=yes,status=no');
return false;
};
}
}
};
