function OpenCentreWindow(source)
{
var h=525; // height of window
var w=625; // width of window
var leftPos=(screen.width/2)-(w/2); // left position of window
var topPos=(screen.height/2)-(h/2); // top position of window
var pos='left='+leftPos+',top='+topPos;
var s='yes';
var r='yes';
var m='yes';
props=pos+',width='+w+',height='+h;
window.open(source,'new',props);
}

