function showKBForm(KB_Page){

	theFB = document.getElementById( 'ifrmKb' );

	// -- Calculate the popup dimensions --
	w = theFB.style.width;
	if ( w.indexOf( 'px' ) != 0 ) w = w.substring( 0, w.indexOf( 'px' ) );
	h = theFB.style.height;
	if ( h.indexOf( 'px' ) != 0 ) h = h.substring( 0, h.indexOf( 'px' ) );
		
	// -- Determine the amount of scrolling in the page
	var scrOfX = 0, scrOfY = 0;

	if( typeof( window.pageYOffset ) == 'number' ) {
		// Netscape compliant
		scrOfX = window.pageXOffset;
	    scrOfY = window.pageYOffset;
	} else if( document.body && ( document.body.scrollLeft || document.body.scrollTop ) ) {
		// DOM compliant
		scrOfX = document.body.scrollLeft;
		scrOfY = document.body.scrollTop;
	} else if( document.documentElement &&
		( document.documentElement.scrollLeft || document.documentElement.scrollTop ) ) {
		// IE6 standards compliant mode
		scrOfX = document.documentElement.scrollLeft;
	    scrOfY = document.documentElement.scrollTop;
	}
	theFB.src           = KB_Page;
	theFB.style.display = 'block';
	//window.location.href = KB_Page;
}
function showFAQs( theOption, lang)	{
	var theParams = theOption.split( '|' );
	location.href = 'faq.aspx?l='+lang+'&m=' + theParams[1] + '&sc=' + theParams[0] + '&f=' + theParams[2];}