

var ImgNaviActive=new Image();
var ImgNaviHigh=new Image();

var imgs = new Array(2); 
imgs[0] = "/export/system/modules/vi.fhf.templates/resources/img/arrow.gif";  
imgs[1] = "/export/system/modules/vi.fhf.templates/resources/img/arrow_activ.gif"; 

	
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("/faq_detail.html?hdnFaqId=" + id + "", "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("/faq.html?tg=" + tg + "", "faq", "width=520,height=580,scrollbars");

}