// JavaScript Document

function name(){
	
	var num = Math.random();
	num = Math.floor((7)*Math.random()) + 1;
		
	if(num == 1){
		document.write("High Availability Tier 4 Network");
	}else if(num == 2){
		document.write("All USA-Based Technical Support");
	}else if(num == 3){
		document.write("Super-Dependable Network Uptime");
	}else if(num == 4){
		document.write("Best-In-Class Tier-4 Data Center");
	}else if(num == 5){
		document.write("Tech Support by Phone, Email, Live Chat");
	}else if(num == 6){
		document.write("All Dell Web Hosting Servers with Ultimate Redundancy Architecture");
	}else if(num == 7){
		document.write("A Company With a Conscience");
	}else{
		document.write("Super-Dependable Network Uptime");
	}
	
	
}