//windowopen

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


//windowprint

isNN4 = document.layers;
isDOM = document.getElementById;

function printing() {
  if(isNN4 || isDOM) {
    window.print();
  }
}


