function form_isFilled(){
	if(document.lostlogin.username.value == ''){
		if(document.lostlogin.subscriptionID.value == ''){
			alert('You must enter your subscription ID or username!');
			return false;
		}
		return false;
	}
	if(document.lostlogin.email1.value == ''){
		alert('You must enter your email address.');
		return false;
	}
	if(document.lostlogin.email2.value == ''){
		alert('You must enter your email address.');
		return false;
	}
	if(document.lostlogin.site.value == 'null'){
		alert('You must select a site.');
		return false;
	}
	if(document.lostlogin.item2.value == ''){
		alert('You must enter a message.');
		return false;
	}
	if(document.lostlogin.code.value == ''){
		alert('You must enter the code displayed!');
		return false;
	}
	
}
function other_isFilled(){

	if(document.reporting.url.value == ''){
		alert('You must enter a URL to the item you wish to report.');
		return false;
	}
	if(document.reporting.filename.value == ''){
		alert('You must enter your filename. If this is a copyright violation, please re-enter the URL in this field.');
		return false;
	}
	if(document.reporting.report.value == 'null'){
		alert('You must select which reporting type you want.');
		return false;
	}
	if(document.reporting.item2.value == ''){
		alert('You must enter a brief message.');
		return false;
	}
	if(document.reporting.code.value == ''){
		alert('You must enter the code displayed!');
		return false;
	}
}
function nnb_isFilled(){

	if(document.reporting.username.value == ''){
		alert('You must enter the username.\nIf you need your email validation resent enter the username you signed up with.\nIf you are reporting a post use the username you are reporting');
		return false;
	}
	if(document.reporting.url.value == ''){
		if(document.reporting.report.value == 'null'){
			alert('You must select which reporting type you want.');
			return false;
		}else if(document.reporting.report.value == 'Report_Post'){
			alert('You must enter a URL to the post you wish to report.');
			return false;
		}
	}
	if(document.reporting.report.value == 'null'){
		alert('You must select which reporting type you want.');
		return false;
	}
	if(document.reporting.item2.value == ''){
		alert('You must enter a brief message.');
		return false;
	}
	if(document.reporting.code.value == ''){
		alert('You must enter the code displayed!');
		return false;
	}
}
function video_isFilled(){

	if(document.video.username.value == ''){
		alert('You must enter your username.');
		return false;
	}
	if(document.video.site.value == 'null'){
		alert('You must select which site you are having video trouble with.');
		return false;
	}
	if(document.video.email1.value == ''){
		alert('Please enter your email address.');
		return false;
	}
	if(document.video.fileurl.value == ''){
		alert('You must enter the video filename or full path to the video.');
		return false;
	}
	if(document.video.item2.value == ''){
		alert('You must enter a brief message.');
		return false;
	}
	if(document.video.code.value == ''){
		alert('You must enter the code displayed!');
		return false;
	}
}
function zipset_isFilled(){
	if(document.zipset.zipset.value == ''){
		alert('You must specify which model and zipset you are requesting.\r\rFor example, if you are requesting Nikki\'s zipset #3, you would enter nikki #3.');
		return false;
	}
	if(document.zipset.username.value == ''){
		alert('You must enter your assigned username.');
		return false;
	}
	if(document.zipset.subscriptionID.value == ''){
		alert('You must enter your CCBill subscription ID.');
		return false;
	}
	if(document.zipset.email1.value == ''){
		alert('Please enter your email address.');
		return false;
	}
	if(document.zipset.email2.value == ''){
		alert('Please re-enter your email address.');
		return false;
	}
	if(document.zipset.item2.value == ''){
		alert('You must enter a brief message.');
		return false;
	}
	if(document.zipset.code.value == ''){
		alert('You must enter the code displayed!');
		return false;
	}
}
function alertUser(){
	return confirm('Please make sure you have included your information!!\n\r\n\rIf you want to change your email address, username or password, you MUST include your subscription ID or your full name and billing address.\n\r\n\rIf you have lost your email address, username or password and want us to send it to you, you MUST include your subscription ID or your full name and billing address.\n\r\n\rBy clicking OK, you understand that if you did not include this information that your request will be ignored and deleted!');
}