
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("Please deactivate your local popup blocker.\n\nBitte deaktivieren Sie Ihren lokalen Popup-Blocker.\n\nΠαρακαλούμε να απενεργοποιήσετε το τοπικό σας popup blocker.");
      }
    else
	    {
        myTest.close();
      }
  }
window.onload = detectPopupBlocker;


var password = ''
function login(x)
  {
    password=prompt('Please enter your password \/ Bitte geben Sie Ihr Passwort ein \/ Πληκτρολογήστε το σύνθημα:','');
    if (password == false)
      {
        alert('You need a passwort to enter this site.\n\nFuer den Besuch dieser Seite ist ein Passwort erforderlich.\n\nΗ πρόσβαση επιτρέπεται μόνο κατόπιν εισαγωγής συνθήματος.');	
      }
    else
      {
        window.open(password +x+'\/index.html','logged','toolbar=1,location=0,status=0,menubar=1,scrollbars=yes,resizable=1,width=screen.width,height=screen.height');
        //location.href= password + "/index.html";
      }
  }
