/**
 * @desc    kMagic JavaScript Library
 * @author  kubus media
 * @version 1.2
 * @package phonestar*
 */

	/**
	 * @desc   Opens new window and set focus to it
	 * @param  url to open, name of window, options of windows
	 * @return void
	 */
	function openWindow( url, name, options) {
		var f = window.open( url, name, options);
		f.focus();
	}


	/**
	 * @desc   Opens addtional window for Free Call Networks PopUp
	 * @param  url to open
	 * @return void
	 */
	function openFreeCall( url){
		openWindow( url, 'FreeCall', 'scrollbars=0,resizable=1,menubar=0,toolbar=0,location=0,status=0,width=350,height=430');
	}
