<!-- begin script
var windowNote;

function showNote(title, message, colorBack, back, textColor, typeFont, sizeFont, width, height, fromleft, fromtop) {
  windowNote = window.open('','Note','toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,copyhistory=no,' + 'width=' + width + ',height=' + height + ',left=' + fromleft + ',top=' + fromtop + ',screenX=' + fromleft + ',screenY=' + fromtop);
  text = '<' + 'HTML' + '><' + 'HEAD' + '><' + 'TITLE' + '>' + title + '</' + 'TITLE' + '><' + '/HEAD' + '><' + 'BODY BACKGROUND=' + '"' + back + '"' + ' BGCOLOR=' + '"' + colorBack + '">';
  text +='<FONT FACE="' + typeFont +'"';
  text += ' SIZE=' + sizeFont; 
  text += ' COLOR=' + '"' + textColor +'">';
  text += message + '</FONT>';
  text += '</' + 'BODY' + '><' + '/HTML' + '>';
  windowNote.document.write(text);
  windowNote.focus();
  windowNote.document.close();
  return false;
}
//  end script -->
