var cFlv = new Swiff('/inc/template/maxgiermann/flvplayer-clips.swf', {
id: 'swfplayer',
width: 577,
container: $('clipplayer'),
height: 393,
params: {
wmode: 'Transparent'
}
});
new Request.JSON({url: '/', noCache: 1, onComplete: function( pValues ){
$('cliplist').empty();
new Element('div', { 'text' : 'Clip Auswahl: ' }).inject( $('cliplist') );
$H(pValues.items).each(function(item, flv){
new Element('a',{
text: item,
style: 'cursor: pointer; font-size: 10px;'
})
.addEvent('click', function(){
document['swfplayer'].play(flv);
})
.inject( $('cliplist') );
});
}}).post({kGetPage: 19});