// JavaScript  Ringtone Preview

function PlaySound(url) {
  document.all.sound.src = url;
}

// Visible Invisible

function nokia()
{
    var samsung = document.getElementById("samsung");
    samsung.style.display = "none";
	
    var motorola = document.getElementById("motorola");
    motorola.style.display = "none";

	var sonyEricsson = document.getElementById("sonyEricsson");
    sonyEricsson.style.display = "none";

	var nokia = document.getElementById("nokia");
    nokia.style.display = "block";
	
}
    
function sonyEricsson()
{
    var samsung = document.getElementById("samsung");
    samsung.style.display = "none";
	
    var motorola = document.getElementById("motorola");
    motorola.style.display = "none";

	var nokia = document.getElementById("nokia");
    nokia.style.display = "none";

	var sonyEricsson = document.getElementById("sonyEricsson");
    sonyEricsson.style.display = "block";
	
}
    
function motorola()
{
    var samsung = document.getElementById("samsung");
    samsung.style.display = "none";
	
    var nokia = document.getElementById("nokia");
    nokia.style.display = "none";

	var sonyEricsson = document.getElementById("sonyEricsson");
    sonyEricsson.style.display = "none";

	var motorola = document.getElementById("motorola");
    motorola.style.display = "block";
	
}
    
function samsung()
{
    var nokia = document.getElementById("nokia");
    nokia.style.display = "none";
	
    var sonyEricsson = document.getElementById("sonyEricsson");
    sonyEricsson.style.display = "none";

	var motorola = document.getElementById("motorola");
    motorola.style.display = "none";

	var samsung = document.getElementById("samsung");
    samsung.style.display = "block";
	
}