// JavaScript Document

function suggestion() {
  window.open('/suggestions.php','Suggestions','height=400,width=500,chrome=no');
}

function popUpWindow (location,width,height){
  var params="toolbar=no,width="+width+",height="+height+",directories=no,menubar=no,scrollbars=yes,resizable=no";
  win=window.open(location,"InformationPopup",params);
}


