// 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 openWindow1(url, name) {
  popupWin = window.open(url, name,'resize,menubar=no,scrollbars=auto,width=750,height=550,left=0,top=0')
}

