// JavaScript Document
function feature_popup(my_url, s, w, h) {
    featureWindow = window.open(my_url,'featureWindow','scrollbars='+s+', width='+w+', height='+h);
    featureWindow.focus();
}

function print_my_page() {
  if(window.print) {
    window.print();
  } else {
    alert("Sorry, your browser does not support this function. Please select the print option from the file menu.");
  }
}