function newWin(url) 
{
	var w = window.open(url, 'blank');
	w.focus();	
	
	return false;
}
