function popwindow(winpage, title, height)
{
settings='width=400,height='+height+',left=50,scrollbars=no,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';
var win=window.open(winpage, title, settings);
win.focus();
}

