function popup(name, width, height) {
width = parseInt(width) + 30
height=parseInt(height) + 40
mywin = window.open(name,"win",'resizable=no,location=no,menubar=no,toolbar=no,status=no,scrollbars=no,width='+width+',height='+height);
}