function NewWindow(s,w,h){
    l=Math.round((screen.width-w)/2);
    t=Math.round((screen.height-h)/2);
    window.open(s,"_blank","width="+w+"px,height="+h+"px,left="+l+"px,top="+t+"px,toolbar=0,menubar=0,status=0,scrollbars=0,resizable=0");
    return;
}

