	function SendFriend(url, window_width, window_height, scrollbars, title,type_offre){
	if (scrollbars==null)
		scrollbars="yes";
	var h,w;
	h = screen.height; //height of screen, not just the parent window
	w = screen.width; //width of the screen, not just the parent window
	var l,t;
	l = parseInt((w-window_width)/2);
	t = parseInt((h-window_height)/2);
	var titre = "Envoyer à un ami";
	var url_ = document.location.href;
	var _get = url_.split("os=");
	var sans_le_dieze = _get[1].split("#");
	popupWin = window.open(url+"?v="+sans_le_dieze[0]+"&&"+type_offre,title,'status,dependent,resizable,width='+window_width+',height='+window_height+',left='+l+',top='+t+',scrollbars=' + scrollbars);
	}
	
	
	function SendVideo(url, window_width, window_height, scrollbars, title,type_offre){
	if (scrollbars==null)
		scrollbars="yes";
	var h,w;
	h = screen.height; //height of screen, not just the parent window
	w = screen.width; //width of the screen, not just the parent window
	var l,t;
	var pagetosend;
	l = parseInt((w-window_width)/2);
	t = parseInt((h-window_height)/2);
	var titre = "Envoyer à un ami";
	var url_ = document.location.href;
	//alert(url_);
	var _get = url_.split("/");
	//alert (_get);
	//alert(_get.length);
	pagetosend = _get[_get.length-1];
	//alert(pagetosend );
	popupWin = window.open(url+"?v="+pagetosend+"&&"+type_offre,title,'status,dependent,resizable,width='+window_width+',height='+window_height+',left='+l+',top='+t+',scrollbars=' + scrollbars);
	}
	