function NewWindow (page,WindowWidth,WindowHeight) {

var XPos = (screen.width - WindowWidth)/2;
var YPos = (screen.height - WindowHeight)/2;
window.open(page,'', 'scrollbars=no,resizable=no,width='+WindowWidth+',height='+WindowHeight+',top='+YPos+',left='+XPos+'');

}
