
function loadftp()
	{
	var ftpURL = 'ftp://' + ftpform.username44.value + ':' + ftpform.password44.value + '@wg816.com';
	alert(ftpURL);
	if(ftpform.username44.value == '')
	{
		alert("You left the username blank. Sign in the old way or try again"); 
		window.open('ftp://wg816.com', '_self');	
	}
	else if (ftpform.password44.value == '')
	{
		alert("You left the password blank. Sign in the old way or try again"); 
		window.open("ftp://wg816.com", "_self");
	}
	else
	{
	window.open(ftpURL, '_self');
	}
	}



