
function private()
{
  var input = prompt('This area is password protected and used for private use only. Please enter password:','');
  
  if(input.length==0)
  {}
  else
  {
    var i = 0;
    var code = '';

    for (i=0;i<=input.length-1;i++)
    {
      code = code + input.charCodeAt(i) + i;
    }
    
    window.location.href =  'http://www.g-mikee.de/'+code+'/gallery.htm';

  }
} 

