
function popupWin( url, title, options ) 
{
	var newWin = window.open( url, title, options );
	
	if( !newWin )
	{
		newWin = window.open('',title, options);
		newWin.location.href = url;
	}
}