// JavaScript Document
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);
}


