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=no,height=565,width=770,scrollbars=no,status=no,dependent=no,directories=no');
	if (!wnd) return false;
	wnd.focus();
	return true; 
}