var win = null
function OpenWindow(src,width,height)
{
    win = window.open(src,'popup','width='+width+',height=' +height+ ',toolbar=1,menubar=1,scrollbars=1,resizable=1');
    win.focus();
}
