<!--
function password(login) 
{
winAttributes='toolbar=yes,location=no,scrollbars=yes,resizable=yes,width=800,height=600,left=1,top=1'; 
if ((document.login.user.value != "") && (document.login.pass.value != "")) 
{
window.open("ftp://"+document.login.user.value +":"+ document.login.pass.value + "@24.249.15.70",'',winAttributes) 
}
else
{
alert('Please enter your Username and Password!, If you do not have one but would like access please email support@acgtechnologies.com')
}
}
//-->