// JavaScript Document

function aWindow(mypage, name, w, h, scroll){
var the_win;

if (screen.height){


}
top_pos = (screen.height - w)/2;
width_pos = (screen.width - w)/2;
//top_pos = screen.height/2;
var settings = 'width='+w+', height='+h+', top='+top_pos+', left='+width_pos+', scrollbars='+scroll;
the_win = window.open(mypage, name, settings);

}



