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