// JavaScript Document
<!--
var ventana;
function nuevaVentana(numero){
	ventana=window.open('','NuevaVentana','width=300,height=100,top=20,left=0,resize=no');
    ventana.opener=self;
	ventana.document.write("<HTML><HEAD><TITLE>Proart Ramirez</TITLE></HEAD>");
    ventana.document.write("<BODY bgcolor='#FFF' marginheight='0' marginwidth='0' leftmargin='0' topmargin=0");
    ventana.document.write("><br><CENTER>");
	switch (numero){
		case(1):song = "demo1.mp3";
				text = "<b>Juan Karlos - demo1</b><br>";break;
		case(2):song = "demo2.mp3";
				text = "<b>Juan Karlos - demo2</b><br>";break;
		case(3):song = "demo3.mp3";
				text = "<b>Juan Karlos - demo3</b><br>";break;
		case(4):song = "demo4.mp3";
				text = "<b>Juan Karlos - demo4</b><br>";break;
		case(5):song = "demo5.mp3";
				text = "<b>Juan Karlos - demo5</b><br>";break;
	}
	ventana.document.write("<font face=verdana size=2 color=#ffffff>"+text+"</font>");
	ventana.document.write("<object id='NSPlay_1' classid='CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95'"); 
	ventana.document.write("width=280 height=50");
	ventana.document.write("codebase='http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701'");
  	ventana.document.write("standby='Cargando los componentes del Reproductor de Windows Media de Microsoft...'");
	ventana.document.write("type='application/x-oleobject'>");
    ventana.document.write("<param name='FileName' value='demos/"+song+"'>");
    ventana.document.write("<param name='ShowControls' value='1'>");
    ventana.document.write("<param name='ShowDisplay' value='0'>");
    ventana.document.write("<param name='ShowStatusBar' value='1'>");
	ventana.document.write("<param name='AutoPlay' value='1'>");
    ventana.document.write("<embed type='application/x-mplayer2'");
	ventana.document.write("pluginspage='http://www.microsoft.com/Windows/Downloads/Contents/Products/MediaPlayer/'");
    ventana.document.write("filename='demos/"+song+"'");
    ventana.document.write("src='demos/"+song+"'");
    ventana.document.write("showcontrols=1");
    ventana.document.write("showdisplay=1");
    ventana.document.write("showstatusbar=1");
    ventana.document.write("></embed>");
	ventana.document.write("</object><BR><BR>");
	//ventana.document.write("<IMG SRC='iRtm/L2.gif' ALT='Grupos' WIDTH='300' HEIGHT='20' NAME='a' BORDER='0'>");
    ventana.document.write("</CENTER></BODY>");
    ventana.document.write("</HTML>");
    ventana.document.close();
   }
//-->

