function fl_view(objhtml) { 
    document.write(objhtml); 
} 

<!---------------------------------  FAQ ----------------------------------------->

function openWin(url, w, h) {
	var info = "top=0, left=0, width="+w+", height="+h+",, resizable=1, scrollbars=no";
	window.open(url, "_blank", info)
}

var old_N = "";
var old_C = "";



function showhide(sel_N, sel_C)
{
	if (old_N == sel_N)
	{
		document.getElementById(sel_N).style.display = "none";
		document.getElementById(sel_C).style.color = "#666666";
		old_N = "";
		old_C = "";
	}
	else if (old_N != "")
	{
		document.getElementById(old_N).style.display = "none";
		document.getElementById(old_C).style.color = "#666666";
		document.getElementById(sel_N).style.display = "block";
		document.getElementById(sel_C).style.color = "#246A9A";
		old_N = sel_N;
		old_C = sel_C;
	}
	else
	{
		document.getElementById(sel_N).style.display = "block";
		document.getElementById(sel_C).style.color = "#246A9A";
		old_N = sel_N;
		old_C = sel_C;
	}
}
