// JavaScript Document

function MM_openBrWindow(theURL,winName,features) { //v2.0
	width = 390;
	height = 270;
	x = (640 - width)/2; 
	y = (480 - height)/2;
	
	if (screen) {
		y = (screen.availHeight - height)/2;
		x = (screen.availWidth - width)/2;
	}
	newfeatures = 'width='+width+',height='+height+',screenX='+x+',screenY='+y+',top='+y+',left='+x;
	window.open(theURL,winName,newfeatures);
}
