/* openBrWindow PopUp */

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function openWindow(url, n, w, h, scr, res){
	x=(screen.availWidth-w)/2;
	y=(screen.availHeight-h)/2;
	features="top="+y+",left="+x+",width="+w+",height="+h+",scrollbars="+scr+",resizable="+res;
	return !window.open(url, n, features);
}