/**
 * @author 	Izabela Sieradzka
 */

function aTarget(el, name)
{
	var wnd = window.open(typeof el == 'string' ? el : el.href, typeof name != 'undefined' ? name : '', 
	'menubar=yes,toolbar=yes,location=yes,directories=no,status=yes,scrollbars=yes,resizable=yes,width=800,height=600');
	if (!wnd) return false;
	wnd.focus();
	return true; 
}
