/**
	JS Script file for Mangembo-fm.com 
	ngscript.js : création 2010/12/28
	need : jquery 1.4.4
*/
function new_popup_Fen(url, titre, w, h,scl){
	var param = "toolbar=no,location=no,directories=no,menubar=no, scrollbars="+scl+",status=no,resizable=0,width="+w+", height="+h;
	var hand0 = window.open(url,titre, param);

	if(hand0 != null){
		if(hand0.opener == null)
			hand0.opener = self;
		hand0.focus();
	}
}

function new_popup_Fen_2(url, titre, w, h,scl){
	var param = "toolbar=no,location=no,directories=no,menubar=no, scrollbars="+scl+",status=no,resizable=0,width="+w+", height="+h;
	var hand0 = window.open(url,titre, param);

	if(hand0 != null){
		if(hand0.opener == null)
			hand0.opener = self;
		hand0.focus();
	}
}

function onAir() {
	new_popup_Fen('ngembo_player.php', 'NgemboLive', '400', '220','no');
}
