
     function flashLinks(theLink){
	switch (theLink){
		case "collection":
			window.open('flashPop.asp?fName=cd_'+gLangID+'','_blank','width=800,height=635,scrollbars=no');
		break;
		case "event_current":
			location.href='index.asp?cFlag=content&incFile=events&display=event&thedate=&evtID=104&langid='+gLangID+'';
		break;
		case "event_list":
			location.href='index.asp?langid='+gLangID+'&cFlag=content&incFile=events';
		break;
		case "designers":
			location.href='index.asp?cFlag=content&incFile=collections&langid='+gLangID+'';
		break;
		case "feature":
			location.href='index.asp?special=boutique&sgFilter=911&cFlag=products&langid='+gLangID+'';
		break;

	}

     }


     function checkMoney(theForm){
	var errs='';
	if (Math.round(theForm.price_lo.value)>Math.round(theForm.price_hi.value)){
		if (gLangID==1){
			errs=errs+'The lower price range cannot be greater than the high price range!';
		}else{
			errs=errs+'Le prix minimum ne peut pas être supérieur au prix maximum!';
		}
		
	}
	if (errs==''){
		return true;
	}else{
		alert(errs);
	return false;
	}
     }

