// JavaScript Document

function launchWindow(url, features) {
  window.open(url, "_blank", features);
}
//-->

<!-- Begin var windowNote;
function showNote(title, message, colorBack, backg, textColor, typeFont, sizeFont)
 { windowNote = window.open('','Note','toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no,' + 'width=400' + ',height=100');
  text = '<' + 'HTML' + '><' + 'HEAD' + '><' + 'TITLE' + '>' + title + '</' + 'TITLE' + '><' + '/HEAD' + '><' + 'BODY BACKGROUND=' + '"' + backg + '"' + ' BGCOLOR=' + '"' + colorBack + '">';
  text += '<CENTER>';
  text +='<FONT FACE="' + typeFont +'"';
  text += ' SIZE=' + sizeFont; 
  text += ' COLOR=' + '"' + textColor +'">';
  text += message + '</CENTER></FONT>';
  text += '</' + 'BODY' + '><' + '/HTML' + '>';
  windowNote.document.write(text);
  windowNote.focus();
  windowNote.document.close();  return false;}
// End -->
