// Online Galleries Login Script
function login1(text1,text2)
{
 if (text1==text2)
 open('http://www.doublejphotography.com/onlinegalleries/schouten/index.html');
 else 
 {
  alert('Access Denied - Password Incorrect.');
  open('OnlineProofs.html');
 }
}
function login2(text1,text2)
{
 if (text1==text2)
 open('http://www.doublejphotography.com/onlinegalleries/jurjens/index.html');
 else 
 {
  alert('Access Denied - Password Incorrect.');
  open('OnlineProofs.html');
 }
}
function open(url)
{
 location.href=url;
}
