function init() {
togglePopup();
}


function openPopup() {
  return false;
}

//function openDermaPopup(url, y)
//{
//	if(typeof popUpWindow != 'undefined' && !popUpWindow.closed) popUpWindow.close();
	//if(!y) y = 'width=550'; else y = 'scrollbars=yes,resizable=no,width=550,height='+y;
	//popUpWindow = window.open(url, 'Dermaplant Salbe', y);
//}

function openDermaPopup(url){
 window.open(url, "popup", "location=no,menubar=no,resizable=no,scrollbars=yes,status=no,toolbar=no,width=600,height=500");
}

function togglePopup() {
var box = $('mandatorypopup');

$$("a.item8").invoke("observe", "mouseover", function() {
box.style.display = "block";
});

$$("a.item8").invoke("observe", "mouseout", function() {
box.style.display = "none";
});



}


window.onload = init;
