// JavaScript Document
function post()
{
if(document.loginform.horde_user.value == '')
{
alert('Please enter User Name')
document.loginform.horde_user.value ="";
document.loginform.horde_user.focus()
return false
}
 
if(document.loginform.horde_pass.value == '')
{
alert('Please enter your Password')
document.loginform.horde_pass.value ="";
document.loginform.horde_pass.focus()
return false
}
//alert("working");
//var intIndex = window.document.loginform.domain1.selectedIndex;
//var strText = window.document.loginform.domain1.options[intIndex].text;
 
//alert(strText);
window.document.loginform.horde_user.value = window.document.loginform.horde_user.value +"@cybergreensolutions.com";
return true;
}
