function fer(url,winName,width,height){
    		var winl = (screen.width - width) / 2;
			var wint = (screen.height - height) / 2;
            var newWindow = window.open(url,winName,'height='+height+',width='+width+',top='+wint+',left='+winl+',scrollbars=no,status=no,resizable=no,menubar=no,hotkeys=no');
     }
     
function arata_poza(id){
	fer(cale+"poza.php?id="+id,"pozeSingers",680,570);
	
}

function videoChat_old(){
	fer(cale+"videochat.php","videochat",840,620);
}

function chat(id){
	fer(cale+"chat.php?id="+id,"chat_"+id,450,540);
}

function videoChat_old(cam){
	fer("videochat.php?do="+cam,"videochat_"+cam,840,620);
}

  function doAjax(unde)
{
	$.ajax({
		  type: "GET",
		  cache: false,
  		url: unde,
  		dataType: "script",
  		success: function(){
  			
	   	},
	   	error: function(){
	   		alert("Eroare! Va rugam incercati din nou");
	   	}
		});
} 

function doAjaxPost(unde,parametrii)
{
	$.ajax({
		  type: "POST",
		  cache: false,
  		url: unde,
  		data: parametrii,
  		dataType: "script",
  		success: function(){
  			
	   	},
	   	error: function(){
	   		alert("Eroare! Va rugam incercati din nou");
	   	}
		});
} 
