function go_link(page,width,height){
        if ((width < 1000) && (height < 1000)){
                newWin = window.open(page,"go_link", "scrollbars=auto,width=" + width + ",height=" + height + ",resizable=no,dependent=yes")
				newWin.moveTo(((window.screen.width-width) / 2),((window.screen.height-height) / 2));
 
       }
}

