function changeSize(){
    if(frame.document.body.scrollHeight < 350){
        document.all.frame.height = 350;
    }else
        document.all.frame.height = frame.document.body.scrollHeight;
}