<%@ taglib prefix="cms" uri="http://www.opencms.org/taglib/cms" %>

var ImgNaviActive=new Image();
var ImgNaviHigh=new Image();

var imgs = new Array(2); 
imgs[0] = "<cms:link>/system/modules/vi.fhf.templates/resources/img/arrow.gif</cms:link>";  
imgs[1] = "<cms:link>/system/modules/vi.fhf.templates/resources/img/arrow_activ.gif</cms:link>"; 

	
function openPrintWindow(file,name,param,strArea){
	w=window.open(file,name,param,strArea);
}

function showFAQDetail(){
	var field=document.forms.frmFaqList.hdnFaqId;
	var id=field.options[field.selectedIndex].value;
	if(id!=0){
		win=window.open("<cms:link>/faq_detail.html?hdnFaqId=" + id + "</cms:link>", "faqanswer", "width=465,height=500,scrollbars");
	}
}

function ToggleImage(strImage,i){
	img=document.images[strImage];
	if(i==1){
		img.src=imgs[1]; 
	}
	if(i==0){
		img.src=imgs[0]; 
	}
}


function showFAQ(tg){
	FAQwin=window.open("<cms:link>/faq.html?tg=" + tg + "</cms:link>", "faq", "width=520,height=580,scrollbars");

}