// JavaScript Document

// Show the comment form
function showCommentForm(id){
  var state = document.getElementById(id).style.display;
  //alert(state);
  if(state == 'block'){
    state = 'none';
  }else{
    state = 'block';
  }
  document.getElementById(id).style.display = state;
}

function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=1,width=950,height=600,left = 150,top = 50');");
}


//document.getElementById(id).style.display = 'block';
