function openwin(wide,high){
var windowsettings =
"height=" + eval(high+20) + ",width=" + eval(wide+17) +
",location=no,scrollbars=yes";
newwin = window.open("","newwin",windowsettings);
newwin.window.focus();
}