function multimedia(){ if(document.getElementById('cancion').value != "") document.getElementById('media').innerHTML='<embed id="mediaPlayer" name="mediaPlayer" pluginspage="http://microsoft.com/windows/mediaplayer/en/download/" src="'+document.getElementById('cancion').value+'" type="application/x-mplayer2" loop="true" designtimesp="5311" autostart="true" videoborder3d="-1" showstatusbar="-1" showdisplay="0" showtracker="-1" showcontrols="true" bgcolor="transparent" autosize="-1" displaysize="4" height="250" width="300"></embed>'; } function SetCookie() { name = "cancion"; value = document.getElementById('cancion').value; var expdate = new Date (); var path = null; var domain = null; var secure = false; expdate.setTime(expdate.getTime() + (24 * 60 * 60 * 1000 * 31)); expires = expdate; document.cookie = name + "=" + escape (value) + ((expires == null) ? "" : ("; expires=" + expdate.toGMTString()))+ ((path === null) ? "" : ("; path="+path)) + ((domain === null) ? "" : ("; domain="+domain)) + ((secure === true) ? "; secure" : ""); }