
function midwind(loc) {
var wnd="midwind";
var width='630px';
var height='600px';
var myWindow = window.open(loc, wnd, 'resizable=yes,scrollbars=yes,status=0,width='+width+',height='+height);
if (myWindow.focus!=null) {
myWindow.focus();
}
}

