function popWin( url, name )
{
	var w = window.open( url, name, "width=640, height=590, scrollbars=1, resizable=1, directories=0, location=0, menubar=0, status=0, titlebar=0, toolbar=0" );
	if ( window.focus ) 
	{ 
		w.focus();
	}
}
