/**
 *
 * @access public
 * @return void
 **/
function open_channel(URL){

	var popUpSizeX=550;
	var popUpSizeY=425;

// Here move it to any poiny on screen
	var popUpLocationX=150;
	var popUpLocationY=150;

// URL of the popUp
	var popUpURL=URL;


	splashWin = window.open("",'x','fullscreen=1,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=no,resizable=0');
	splashWin.blur();
	window.focus();

	splashWin.resizeTo(popUpSizeX,popUpSizeY);
	splashWin.moveTo(popUpLocationX,popUpLocationY);
	splashWin.location=popUpURL;
	splashWin.focus();
}
