function launchProofingLW()
{
	login=document.getElementById("clientLogin").value;
	if (login!="")
	{
	
		AjaxRequest.get(
		{
		  'url':'http://www.lukaphoto.com/confirm/confirm_login.php?c='+login
		  ,'onSuccess':function(req)
		  				{
							if (req.responseText=='confirm')
							{
								url="http://www.luka-foto.com/?l="+login;
								myLightWindow.activateWindow({href: url,title: 'Proofing Gallery'});
							}
							else
							{
								alert ("That login is not valid. Please try another one.");
							}
						}
		}
	  );
	
	}
	else
	{
		alert ("Please type a login name...");
	}
}


function toggleDiv(divid){
  if(document.getElementById(divid).style.display == 'none'){
    document.getElementById(divid).style.display = 'block';
  }else{
    document.getElementById(divid).style.display = 'none';
  }
}