function _form_cancel()
{
    if(!opener){
        history.back();
    }else{
        top.window.opener = top;
        top.window.open('','_parent', '');
        top.window.close();
    }
}  
