// popup
function popup(fin_url, width, height) {
	var winl = (screen.width - width) / 2;
	var wint = (screen.height - height) / 2;
	window.open(fin_url,"_blank",'width='+width+',height='+height+',toolbar=no,scollbars=no,menubar=no,resizable=no,top='+wint+',left='+winl+'') ;
}

function faq(idlink,baseid,count) {
  void(0);
 
 for( var i = 0; i < count; i++) {
  var cur = baseid + i;
  if (cur == idlink) {
   if ( document.getElementById(cur)) {
   document.getElementById(cur).style.color = "\#B1DCFF";
  }
  }
  else {
   if ( document.getElementById(cur)) {  
    document.getElementById(cur).style.color = "\#6EBCFE";
   }
  }
 }
 
}
