// ---------------------------------------------------------
// Auteur   : 2008-09-12 - Ellis Antaya
// Objectif : fait une redirection si l'url est valide
// ---------------------------------------------------------
function redirect(url) {
	if (url
	&&  url != ''
	&&  url != 'none')	{
		window.location.href = url;
	}
	
	return true;
}


function episodevideo(url, divArea) {
	new playerWinMedia({ 
		id:       'player',
		url:      url,
		width:    320,
		height:   240,
		uimode:   'full',
		noplugin: { bgcolor: '#000000', color: '#ffffff' }
	}).generate({
		output:{
			type:     'object',
			id:       divArea,
			property: 'innerHTML'
		}
	});

	return false;
}




