/*
* File: global.js
* Use to hold common functions used in multiple pages.
*/

// Use to open browser window using Dreamweaver Behavior panel.
function MM_openBrWindow(theURL,winName,features) {
	// Leave window name blank in Behavior panel dialog to always open _blank window.
  var winNew = window.open(theURL,(winName)?winName:"_blank",features);
	winNew.focus();
}
