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

