function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function openWindow(url) {
  popupWin = window.open(url,'remote',' width=540,height=684,top=top,left=left')
  popupWin.window.focus()
}

function openWindowSm(url) {
  popupWin = window.open(url,'remote',' width=400,height=518,top=top,left=left')
  popupWin.window.focus()
}

function openWindowParms(url, width, height, title) {
	hStr =  ' width=' + width + ',height=';
	hStr += height + ',top=top,left=left,scrollbars=yes';
  popupWin = window.open(url, title, hStr);
  popupWin.window.focus()
}
