function openPopup(url, d, l, m, s, ti, to, sb, r, w, h){
	open(url,'miaPopup',"directories=" + d + ",location=" + l + ",menubar=" + m + ",status=" + s + ",titlebar=" + ti + ",toolbar=" + to + ",scrollbars=" + sb + ",width=" + w + ",height=" + h + ",resizeable=" + r);
}


function expandFaq(obj)
{
	var node = obj.parentNode.parentNode;
	var div = node.getElementsByTagName('div')[0];

	if (div.style.display == 'block')
		div.style.display = 'none';
	else
		div.style.display = 'block';
	return false;
}
