function containsDOM (container, containee) {
  var isParent = false;
  do 
  {
  	if((isParent = container == containee))
    	break;
    containee = containee.parentNode;
  }
  while (containee != null);
  return isParent;
}


function checkMouseOut (element, evt) {
  if (element.contains && evt.toElement) {
    return !element.contains(evt.toElement);
  }
  else if (evt.relatedTarget) {
    return !containsDOM(element, evt.relatedTarget);
  }
}

function dropDownHide(action) {
	if(action == "storefinder") 
	{
		document.getElementById('dropDownUnternehmen').style.visibility = 'hidden'; 
		document.getElementById('dropDownOutlet').style.visibility = 'hidden';
	}
	else if(action == "unternehmen") 
	{ 
		document.getElementById('dropDownStorefinder').style.visibility = 'hidden';
		document.getElementById('dropDownOutlet').style.visibility = 'hidden';
	}
	else if(action == "outlet") { 
		document.getElementById('dropDownUnternehmen').style.visibility = 'hidden';
		document.getElementById('dropDownStorefinder').style.visibility = 'hidden';
	}
	else if(!action)
	{
		document.getElementById('dropDownStorefinder').style.visibility = 'hidden';
		document.getElementById('dropDownUnternehmen').style.visibility = 'hidden';
		document.getElementById('dropDownOutlet').style.visibility = 'hidden';
	}
}

function winOut(type) {
	
	if(type=="service")
	{
		window.open('../../HtmlMeta/de/service.html','Service', 'width=713,height=549,scrollbars=no,toolbar=no,status=no,resizable=no, screenX=20,screenY=20');
	}
	
	if(type=="kontakt")
	{
		window.open('../../HtmlMeta/de/kontakt.html','Kontakt', 'width=713,height=549,scrollbars=no,toolbar=no,status=no,resizable=no, screenX=20,screenY=20');
	}
	
	if(type=="newsletter")
	{
		window.open('http://shop.bettybarclay-veramont-gilbret.de/cust/5860/cpi/anm.php','Newsletter', 'width=713,height=600,scrollbars=no,toolbar=no,status=no,resizable=no, screenX=20,screenY=20');
		//window.open('http://shop.bettybarclay-veramont-gilbret.de/cust/5860/cpi/anm.html','Newsletter', 'width=713,height=549,scrollbars=no,toolbar=no,status=no,resizable=no, screenX=20,screenY=20');
		//window.open('../../HtmlMeta/de/newsletter.html','Newsletter', 'width=713,height=549,scrollbars=no,toolbar=no,status=no,resizable=no, screenX=20,screenY=20');
	}
	

	if(type=="agb")
	{
		window.open('../../HtmlMeta/de/faq.html?agb','AGB', 'width=713,height=549,scrollbars=no,toolbar=no,status=no,resizable=no, screenX=20,screenY=20');
	}
	
	if(type=="impressum")
	{
		window.open('../../HtmlMeta/de/impressum.html','Impressum', 'width=713,height=549,scrollbars=no,toolbar=no,status=no,resizable=no, screenX=20,screenY=20');
	}
	
	if(type=="faq")
	{
		window.open('../../HtmlMeta/de/faq.html','FAQ', 'width=713,height=549,scrollbars=no,toolbar=no,status=no,resizable=no, screenX=20,screenY=20');
	}
	if(type=="outlet")
	{
		//document.getElementById("dropDownOutlet").style.visibility = "visible";
	}
	if(type=="storefinder")
	{
		document.getElementById("dropDownStorefinder").style.visibility = "visible";
	}
	if(type=="unternehmen")
	{
		document.getElementById("dropDownUnternehmen").style.visibility = "visible";
	}
	if(type=="unternehmenoff")
	{
		//document.getElementById("dropDownUnternehmen").style.visibility = "hidden";
	}
	
}