// JavaScript Document
function CaricaVideo(id,type)
{
	$.ajax({
		beforeSend: function(){
     		$('#player').html('<img src='+dir+'/images/load.gif />');
   		},
		type: "GET",
		url: dir+'/ajax/caricavideo.php',
		data: 'id='+escape(id)+'&type='+escape(type),
		success: function(msg){
			  $("#player").html(msg);
        }
	});
}
function Popup()
{	
	var stile = "top=10, left=10, width=330, height=300, status=no, menubar=no, toolbar=no, scrollbars=no";
	window.open(dir+'/popup.php', "", stile);
}
