function confirmation(message,url1,url2) {
  var answer = confirm(message)
    if (answer){
      window.location = url1;
    }
    else{
      window.location = url2;
    }
}

function poponload(month,date){
  testwindow= window.open ("", "mywindow",
			   //"location=1,status=1,scrollbars=1,width=100,height=100");
			   "location=0,width=300,height=300");
  testwindow.moveTo(400,400);
  return false;
}

function showdrop(dropdown){
  document.getElementById(dropdown.getAttribute('alt')).style.display = "block"; 
}
function hidedrop(dropdown){
  document.getElementById(dropdown.getAttribute('alt')).style.display = "none"; 
}
function showdrop2(dropdown){
  dropdown.style.display = "block"; 
}
function hidedrop2(dropdown){
  dropdown.style.display = "none"; 
}

