function popup(wlink,title_,w_,h_){
var x = Math.round((screen.width-w_)/2);
var y = Math.round((screen.height-h_)/2)-25;
var w = window.open(wlink,title_,"width="+w_+",height="+h_+",resizable=no,toolbar=no,scrollbars=yes,left="+x+",top="+y);
w.focus();
}
