Ciao,
chiedo aiuto per una situazione del tipo in esempio (cliccare please)

la combinazione di quanto ritornato da DateInput (di calendarDateInput.js) con uno dei radio buttons (attenzione, DateInput funziona benissimo, non riesco a far funzionare l'idea dei radio buttons) dovrebbe restituire un link così composto

mms://mediaserver.kataweb.it/deejay/audio/dance_revolution/YYYYMMDD_X.wma

dove X è uno dei tre radio buttons.

ad esempio mms://mediaserver.kataweb.it/deejay/audio/dance_revolution/20070525_2.wma che corrisponde alla seconda parte della trasmissione di venerdì 25 maggio (ogni puntata è registrata spezzata in tre parti)

quello che segue è il codice attuale, cioè quello che si vede nella sezione superiore (e che funziona) dell'esempio, la parte sotto dell'esempio invece (che non funziona, neanche c'è il codice) è come vorrei farla diventare. Se date un occhiata, credo sia chiarissimo.

Grazie per qualsiasi idea e risposta. P.S. se serve un metodo POST, benvenga, ma non sono affatto ferrato in materia.

Ciao

Robert

codice:
<html>
<head>
<script type="text/javascript" src="calendarDateInput.js">

/***********************************************
* Jason's Date Input Calendar- By Jason Moon http://www.jasonmoon.net/
* Script featured on and available at http://www.dynamicdrive.com
* Keep this notice intact for use.
***********************************************/

</script>
</head>
<body>

<form name="dr">

<table border="1" cellpadding="10" WIDTH="500">
<tr>
<td align="center" WIDTH="65%">Choose date to play and remember
that D.R. is recorded on friday</td>
<td align="center"><script>DateInput('dr_date', true, 'YYYYMMDD')</script></td>
</tr>
<tr>
<th>Play Dance Revolution</th>
<td><input type="button" onClick="window.open('mms://mediaserver.kataweb.it/deejay/audio/dance_revolution/'+this.form.dr_date.value+'_1.wma','mywindow','width=100,height=50')" value="Part 1">
<input type="button" onClick="window.open('mms://mediaserver.kataweb.it/deejay/audio/dance_revolution/'+this.form.dr_date.value+'_2.wma','mywindow','width=100,height=50')" value="Part 2">
<input type="button" onClick="window.open('mms://mediaserver.kataweb.it/deejay/audio/dance_revolution/'+this.form.dr_date.value+'_3.wma','mywindow','width=100,height=50')" value="Part 3"></td>
</tr>
<tr>
<td colspan="2" align="center">First available date is friday Jan 12 2007</td>
</tr>
</table>
</form>

<form name="co">
<table border="1" cellpadding="10" WIDTH="500">
<tr>
<td align="center" WIDTH="65%">Choose date to play and remember
that C.O.C.C.O. is recorded on friday</td>
<td align="center"><script>DateInput('co_date', true, 'YYYYMMDD')</script></td>
</tr>
<tr>
<th>Play C.O.C.C.O.</th>
<td><input type="button" onClick="window.open('mms://mediaserver.kataweb.it/deejay/audio/cocco/'+this.form.co_date.value+'_1.wma','mywindow','width=100,height=50')" value="Part 1">
<input type="button" onClick="window.open('mms://mediaserver.kataweb.it/deejay/audio/cocco/'+this.form.co_date.value+'_2.wma','mywindow','width=100,height=50')" value="Part 2">
<input type="button" onClick="window.open('mms://mediaserver.kataweb.it/deejay/audio/cocco/'+this.form.co_date.value+'_3.wma','mywindow','width=100,height=50')" value="Part 3"></td>
</tr>
<tr>
<td colspan="2" align="center">First available date is friday Jan 12 2007</td>
</tr>
</table>
</form>

</body>