// JavaScript Document

function MM_openBrWindow(id) { 
	var winName = 'PR';
	var w = window.open('/pr/' + id + '.html', winName, 'scrollbars=yes,width=600,height=700');
	w.focus();
}

function MM_openOverBrWindow(theID) { //v2.0
	var theURL = '/members/overview.cgi?company=' + theID;
	var winName = 'child';
	var features = 'scrollbars=yes,width=600,height=600';
	
	var w = window.open(theURL,winName,features);
  	w.focus();
} 