var params =  	
{	
   Width : 330,
   Height : 280,
   BorderWidth : 0, 
   CloseBoxHeight : 13, 
   CloseBoxSrc : 'images/clsboxgray.gif', 
   CloseBoxWidth : 13, 
   InnerBorderColor : '#F2F2F2', 
   OuterBorderWidth : 0, 
   Shadow : true, 
   StatusBarHeight : 0, 
   StatusBarAlign : 'left', 
   StatusColor : 'white', 
   TitleBarHeight : 19, 
   TitleBarText : 'Your video...', 
   TitleBarAlign : 'left', 
   TitleColor : '#FFA748', 
   TitleFontColor : '#FFFFFF', 
   ContentHTML : '', 
   ContentPadding : 1, 
   ContentFontSize : 11, 
   ContentFontFamily : 'verdana, sans-serif', 
   ContentFontColor : '#cccccc', 
   Resizable : 'None', 
   Id  : 'MovieWindow'
} 

var MovieWindow = new FerantDHTMLWindow(params); 



var moviesArr = new Array (
	"ballamo.swf",
	"ballamo_complicado.swf",
	"ballamo_complicado_con_vuelta.swf",
	"cuba_libre.swf",
	"enchufla_con_salto.swf",
	"enchufla_con_tres_saltos.swf",
	"enchufla_y_arriba.swf",
	"enchufla_y_dile_que_no.swf",
	"fish_hook.swf",
	"gringo.swf",
	"habanera.swf",
	"kentucky.swf",
	"kentucky_complicado.swf",
	"mariposa.swf",
	"partele_el_brazo.swf",
	"setenta.swf",
	"sombrero_con_derrumbe.swf",
	"sombrero_con_lazo.swf",
	"vacila.swf",
	"vacilence_los_dos.swf"
);


function showMovie(m)
{
	var found = false;
	for (id in moviesArr)
	{
		if (moviesArr[id] == m)
		{
			found = true;
			break;
		}
	}
	
	
	if ( found )
	{
		var titleBarText = "Your movie: "+m.substr(0, (m.length-4));

		var movieTemplate = '<center>' + 
			'<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="322" height="254">' + 
			'  <param name="MOVIE" value="movies/'+m+'">' + 
			'  <param name="QUALITY" value="HIGH">' + 
			'	 <embed src="movies/'+m+'" quality="high" type="application/x-shockwave-flash" width="322" height="254">' + 
			'</object></center>';
	
		//MovieWindow.UpdateTitleBarText(titleBarText);
		MovieWindow.UpdateContentHTML(movieTemplate);
		MovieWindow.OpenWindow();
	}
	
	return false;
}

