 function turnon(divname)
  {
	//toggleDiv2('gift');
	//toggleDiv2('bday');
	//toggleDiv2('one');
	toggleDiv2('two');
	//toggleDiv2('thr');
	//toggleDiv2('four');
	toggleDiv(divname);
  }
//this function will show the content within the <div> tag
function toggleDiv(divName) 
{
  thisDiv = document.getElementById(divName);
  if (thisDiv) 
  {
    if (thisDiv.style.display == "none") {
      thisDiv.style.display = "block";
    }
  }
  else {
    alert("Error: Could not locate div with id: " + divName);
  }
}

//this function will hide the content within the <div> tag
function toggleDiv2(divName) 
{
  thisDiv = document.getElementById(divName);
  if (thisDiv) 
  {
    if (thisDiv.style.display == "block") {
      thisDiv.style.display = "none";
    }
  }
  else {
    alert("Error: Could not locate div with id: " + divName);
  }
}

function launchVIP()
{
	var launchVIP = window.open('vip.asp','mywindow','width=400,height=600,toolbar=no, location=no,directories=no,status=no,menubar=no,scrollbars=yes,copyhistory=no, resizable=no');
}