// JavaScript Document

function openBrWindow(theURL,winName,features)
{
	win_obj = window.open(theURL,winName,features);
	win_obj.moveTo(Math.round((screen.availWidth-800)/2),Math.round((screen.availHeight-600)/2));
	win_obj.focus();
}
