function w_open(str)
{
 w_width= 800;
 w_height= 600;
 add_w = window.open(str,'ch','top='+(screen.height-w_height)/2+',left='+(screen.width-w_width)/2+',width='+w_width+',height='+w_height+',scrollbars=1,status=no,resizable=yes');
 add_w.focus(); if (add_w.opener == null) { add_w.opener = window; }
}

function w_open2(str)
{
 w_width= 80;
 w_height= 60;
 add_w = window.open(str,'ch','top='+(screen.height-w_height)/2+',left='+(screen.width-w_width)/2+',width='+w_width+',height='+w_height+',scrollbars=0,status=no,toolbar=no,titlebar=no,resizable=no');
 add_w.focus(); if (add_w.opener == null) { add_w.opener = window; }
}

