Grazie mille, ho trovato ed elaborato un codice che metto a disposizione di tutti, testato sia con IE 8.0 che con Safari 4.0.

codice:
function ControllaPopup()
{
 var test = window.open(null,"","width=300,height=300");
 try 
   {
	test.close();
	window.open(parametri);
    }
 catch (e)
    {
	location.replace("no-popup.html")
    }
}