function faq(id) {

    var el = document.getElementById(id);
    
	displayType = (el.style.display == "none")?"block":"none";

	el.style.display = displayType;

}

function fullwin(targeturl)
{
	window.open(targeturl,"","width=200,height=200,toolbar=no,status=no,menubar=no,scrollbars=no,resizable=no")
}