var windowNote;

function donations(message, colorBack, back, textColor, typeFont, sizeFont)
{
  windowNote = window.open('','Note','toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=yes,copyhistory=no,' + 'width=260' + ',height=320');
  text = '<' + 'HTML' + '><' + 'HEAD' + '><' + 'TITLE' + '>------ Donations ------------------------</' + 'TITLE' + '><' + '/HEAD' + '><' + 'BODY BACKGROUND=' + '"' + back + '"' + ' BGCOLOR=' + '"' + colorBack + '">';
  text +='<FONT FACE="' + typeFont +'"';
  text += ' SIZE=' + sizeFont;
  text += ' COLOR=' + '"' + textColor +'">';
  text += message + '</FONT>';
  text += "<P><TABLE width=100%><TR><TD align=right>" + "<FORM><INPUT TYPE='BUTTON' VALUE=' I agree '" + "onClick='self.close()'></FORM></TD></TR></TABLE>"
  text += '</' + 'BODY' + '><' + '/HTML' + '>';
  windowNote.moveTo(38,120);
  windowNote.document.write(text);
  windowNote.focus();
  windowNote.document.close;
  return false;
}

