function openPop(option){
	var pageHead=new Array()
	pageHead["faqs"]='<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /><link rel="stylesheet" href="/css/pHelpCenterPrint.css" /><link rel="stylesheet" href="/css/pFaq.css" /><script type="text/javascript" src="/js/pFaq.js"></script></head><body><div class="botonPrint"><a href="javascript:window.close();">Close</a> <a href="javascript:window.print();">Print</a></div>';
	pageHead["glossary"]='<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /><link rel="stylesheet" href="/css/pHelpCenterPrint.css" /><link rel="stylesheet" href="/css/pGlossary.css" /></head><body><div class="botonPrint clvPrint"><a href="javascript:window.close();">Close</a> <a href="javascript:window.print();">Print</a></div>';
	pageHead["contact"]='<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /><link rel="stylesheet" href="/css/pHelpCenterPrint.css" /><link rel="stylesheet" href="/css/pFaq.css" /><script type="text/javascript" src="/js/pFaq.js"></script></head><body><div class="botonPrint"><a href="javascript:window.close();">Close</a> <a href="javascript:window.print();">Print</a></div>';
	pageHead["overview"]='<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /><link rel="stylesheet" href="/css/pGlobal.css" /><link rel="stylesheet" href="/css/pages.css" /><link rel="stylesheet" href="/css/pHelpCenterPrint.css" /><script type="text/javascript" src="/js/pFaq.js"></script></head><body><div class="botonPrint"><a href="javascript:window.close();">Close</a> <a href="javascript:window.print();">Print</a></div>';
	pageHead["terms"]='<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /><link rel="stylesheet" href="/css/pHelpCenterPrint.css" /><link rel="stylesheet" href="/css/pages.css" /><link rel="stylesheet" href="/css/pGlobal.css" /><script type="text/javascript" src="/js/pFaq.js"></script></head><body><div class="botonPrint"><a href="javascript:window.close();">Close</a> <a href="javascript:window.print();">Print</a></div>';
	pageHead["membership"]='<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /><link rel="stylesheet" href="/css/pHelpCenterPrint.css" /><link rel="stylesheet" href="/css/pages.css" /><link rel="stylesheet" href="/css/pGlobal.css" /><script type="text/javascript" src="/js/pFaq.js"></script></head><body><div class="botonPrint"><a href="javascript:window.close();">Close</a> <a href="javascript:window.print();">Print</a></div>';
	pageHead["faq"]='<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /><link rel="stylesheet" href="/css/pHelpCenterPrint.css" /><link rel="stylesheet" href="/css/pages.css" /><script type="text/javascript" src="/js/pFaq.js"></script></head><body><div class="botonPrint"><a href="javascript:window.close();">Close</a> <a href="javascript:window.print();">Print</a></div>';
	
	var pageContent= document.getElementById(option+"C").innerHTML;
	var newPosWindow = window.open('','HelpCenter','width=550,height=500,scrollbars=yes');
	var pageEnd= '<script>for(i=1;i<=10;i++){if(document.getElementById("q"+i)){ document.getElementById("q"+i).className="active"; } }</script></body></html>'
	pageContent= replaceOnClick(pageContent);
	newPosWindow.document.write(pageHead[option] + pageContent + pageEnd);
	newPosWindow.document.close();
	newPosWindow.focus();	
}

function replaceOnClick(pageContent){	
 var finalContent,findTag,until,longTag,tagIni,tagEnd,len,strFirst; 
 if(pageContent.indexOf("<a") != -1)
 {
   tagIni = "<a";
   tagEnd = "</a>";
 }
 else
 {
    tagIni = "<A";
	tagEnd = "</A>";
 }  
	while(pageContent.indexOf(tagIni) != -1){
		finalContent="";
		len=pageContent.length;
		findTag = pageContent.indexOf(tagIni);	
		strFirst= pageContent.substring(findTag,len);	
		finalContent= finalContent+pageContent.substring(0,findTag);		
		until = strFirst.indexOf(">");	
		longTag=findTag+until+1;
		finalContent= finalContent+pageContent.substring(longTag,len);
		finalContent = finalContent.replace(tagEnd,"");	
		finalContent = finalContent.replace('onmouseover="rollOver(this,true);" onmouseout="rollOver(this,false);"','');
		pageContent=finalContent;		
	}	
	pageContent = pageContent.replace(/Back to Top/g,'');
	return pageContent;
	
}

