//Contact Us Email Function

function talk(tome) {
	var first;
	var second="mobiltex%23com";
	var whole="mail";
	
	switch (tome){
		case "customer" :
			first="service1";
			break;
		case "sales" :
			first="sales2";
			break;
		case "kp" :
			first="hr";
			break;
		case "red" :
			first="ap";
			break;
		default : first="service1";
	}
	
	whole+="to:"+first+"@"+second.replace(/%23/g,".");	
	return(whole);
}