/* This script and many more are available free online at
The JavaScript Source :: http://javascript.internet.com
Created by: Casey Ryan :: http://www.ebooger.com */

function detectPopupBlocker() {
  var myTest = window.open("about:blank","","directories=no,height=100,width=100,menubar=no,resizable=no,scrollbars=no,status=no,titlebar=no,top=0,location=no");
  if (!myTest) {
    alert("Bloqueo de Popup detectado.");
  } else {
    myTest.close();
	}
}