/*
pop-up function
*/

function openWin(theURL,winName,features) {

    var newWin = window.open(theURL,winName,features)
 newWin.focus()
    newWin.document.close()

}

// -->

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->
