/**
 * @author WG
 */


function modalOpen(n){
	
	$('#emptyModal').modal();
	
	$('#emptyModal').load('modal_edit.html');
	
	addModal();


}


function videoModal(n){
	
	$('#videoModal').modal();

}



function displayVideoxxx(theObjectCode){

	alert(theObjectCode);

	$('#video').empty();
	
	$('#videoModal').modal();

	 $('#video').flash(
        { 
          src: 'videos/'+theSwf+'?rnd=7',
          width: 640,
          height: 498
        },
        { version: 8 }
    );
	
	$('#videoTitle').html(theTitle);
	
	$('#videoSize').html('&nbsp;&nbsp;/&nbsp;&nbsp;' + theSize);

}




function closeModal(){

	$('#video').empty();
	$.modal.close();
	
}