


function jumpTo(optionObj) 
{
	window.location.href = optionObj.options[optionObj.selectedIndex].value;
}

function setBookmark(url,str){
if(str=='')str=url;
if (document.all)window.external.AddFavorite(url,str);
else alert('Press CTRL and D to add a bookmark to:\n"'+url+'".');
}

 function mailpage()
{
mail_str = "mailto:?subject=Check out this item on May and May Co. " ;
mail_str += "&body=I thought you might be interested in this item" ;
mail_str += ". You can view it at " + location.href;
location.href = mail_str;
}



function LayerSH(LayerName,Status) {
ns4 = (document.layers)?true:false
ie4 = (document.all)?true:false

if (ns4) {
	LayerN = document.layers[LayerName]
	if (Status == 'show') LayerN.visibility = 'show';
	if (Status == 'hide') LayerN.visibility = 'hidden';
	}	
if (ie4) {
	LayerN = document.all[LayerName].style
	if (Status == 'show') LayerN.visibility = 'visible';
	if (Status == 'hide') LayerN.visibility = 'hidden';
	}
}
function hide_all(){ 
LayerSH('layer1','hide');
LayerSH('layer2','hide');
LayerSH('layer3','hide');
LayerSH('layer4','hide');
}

