// EMAIL FUNCTION

function mail(account,domain) {

	window.location = "mailto:" + account + "@" + domain;

}

//

// DROP DOWN MENU FUNCTION

function dropDown(url) {

	// alert("The URL is: " + url);

	if(url == "null") {

		alert("Please select a page that you want to go to...");

		return false;

	} else if(url == "http://www.ultimateheadset.com/") {

		window.open(url);

		return false;

	} else {

		window.location = url;

	}

}