//v1.0
//Copyright 2006 Adobe Systems, Inc. All rights reserved.
//- - - - - - - - - - - - - - - - - - - -
//Site WIde Scripts
//- - - - - - - - - - - - - - - - - - - -
function openWin(url, name, attributes){
	var newWin;
	newWin = window.open(url,name,attributes);
	newWin.focus();
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  return window.open(theURL,winName,features);
}

function MM_advOpenBrWindow(theURL,winName,features){
	var newWin;
	newWin = MM_openBrWindow(theURL,winName,features);
	newWin.focus();
}
