// JavaScript Document
function popwin(filename) {
var win;
win=window.open(filename,"externdoc",
"width=520,height=400,left=40,top=40,scrollbars=no,resizable=no");
win.focus();
}

function popwin2(filename) {
var win;
win=window.open(filename,"externdoc",
"width=700,height=700,left=10,top=5,scrollbars=no,resizable=no");
win.focus();
}
