// JavaScript Document
function popup(linkObj,w_w,w_h)
{
    window.open(linkObj.href,'_blank','width='+(w_w+20)+',height='+(w_h+20)+'location=0,toolbar=0,menubar=0,status=0');
    return false;
}