// put even numbers for selection
document.write('<select name="website" onChange="javascript:getvalues()" class="txt">');
document.write('<option value="">Quick Links</option>');
document.write('<option value="http://astrology.indya.com/numerology/numerology.html">Numerology</option>');
document.write('<option value="http://astrology.indya.com/numerology/lifenumber.html">Life Number</option>');
document.write('<option value="http://astrology.indya.com/numerology/birthnumber.html">Birth Number</option>');
document.write('<option value="http://astrology.indya.com/numerology/loshuloginfir.asp">Magic Grid</option>');
document.write('<option value="http://astrology.indya.com/numerology/futurezone.html">Future Zone</option>');
document.write('<option value="http://astrology.indya.com/numerology/compatibility.asp">Compatibility</option>');

document.write('</select>');
function getvalues()
{
	if (document.sitelist.website[document.sitelist.website.selectedIndex].value=="")
	{
		alert("Choose your section");
		return false;
	}
	
	document.location.href=document.sitelist.website[document.sitelist.website.selectedIndex].value;
	return true;
}
