// visor008
// $Revision:  $
// $Date: __/__/__  __:__ $
// iespbMMplayer v0.0.8 Jose Canovas para IES Puerta Bonita
var windowNote;
function showMedia(title, message, media, colorBack, back, textColor, typeFont, sizeFont) {
  windowNote = window.open('','Note','toolbar=no,location=no,directories=no,status=yes,scrollbars=no, resizable=yes,copyhistory=no,' + 'width=362' + ',height=384');
  text = '<' + 'HTML' + '><' + 'HEAD' + '><' + 'TITLE' + '>iespbMMplayer v0.0.8 - ' + title + '<\/' + 'TITLE' + '><' + '/HEAD' + '><' + 'BODY BACKGROUND=' + '"' + back + '"' + ' BGCOLOR=' + '"' + colorBack + '">';
  text += ' <CENTER>';
  
  text += ' <img src="'+ media +'"height="99%" ><p>';
  
  text +='<FONT FACE="' + typeFont +'"';
  text += ' SIZE=' + sizeFont; 
  text += ' COLOR=' + '"' + textColor +'">';
  text += message + '<\/FONT> <\/CENTER><\/' + 'BODY' + '><' + '/HTML' + '>';
  windowNote.document.write(text);
  windowNote.focus();
  windowNote.document.close();
  return false;
}
	



