// 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="palmistry.html">Palmistry</option>');
document.write('<option value="hand.html">Hand Type</option>');
document.write('<option value="finger.html">Finger Type</option>');
document.write('<option value="thumb.html">Thumb Type</option>');
document.write('<option value="life.html">Life Line</option>');
document.write('<option value="head.html">Head Line</option>');
document.write('<option value="heart.html">Heart Line</option>');
document.write('<option value="fate.html">Fate Line</option>');
document.write('<option value="mounts.html">The Mounts</option>');
document.write('</select>');
function getvalues()
{
	if (document.sitelist.website[document.sitelist.website.selectedIndex].value=="")
	{
		alert("Choose your Blockbuster Movie");
		return false;
	}
	
	document.location.href=document.sitelist.website[document.sitelist.website.selectedIndex].value;
	return true;
}
