function _hbxStrip(a){
//remove all illegal characters	
	a = a.split("'").join(" ");
	a = a.split("™").join("");
	return a;
}

function createPageName(){
	//use the HTML page title and file name to create a unique page name
	var pagename = document.title;
	//strip page title prefix
	string1 = "QUALCOMM CDMA Technologies - ";
	string2 = "Qualcomm CDMA Technologies - ";
	var pageTitle = "";
	if(pagename.indexOf(string1) > -1){
		pageTitle = pagename.slice(document.title.indexOf(string1)+string1.length);
		pagename = pageTitle;
	} else if(pagename.indexOf(string2) > -1){
		pageTitle = pagename.slice(document.title.indexOf(string2)+string2.length);
		pagename = pageTitle;
	} else if (document.location.href.indexOf("/search/query/query.html")>0) {	
		pageTitle = "Search Results";
	} else {
		pageTitle = document.title;
	}
	
	var tmpFilename = location.pathname.substring(location.pathname.lastIndexOf('\/')+1); 
	if(tmpFilename.length > 0 && tmpFilename != "index.jsp"){
		tmpFilename = "[" + tmpFilename.substring(0,tmpFilename.lastIndexOf('.')) + "]"; 
	} else {
		tmpFilename = "";
	}
	
	return _hbxStrip(pageTitle + tmpFilename);
}//end createPageName()

function getQueryVariable(variable) {
	//get value from query string
	var query = window.location.search.substring(1);
	var vars = query.split("&");
	for (var i=0;i<vars.length;i++) {
		var pair = vars[i].split("=");
		if (pair[0] == variable) {
			var qsValue = qsValue?qsValue + "," + pair[1]:pair[1];
		}
	} 
        //advanced search values are stored as attributes
        if(variable == "qt" && !qsValue){
            qsValue=unescape(getQueryVariable("op0"))+getQueryVariable("tx0") + " " + unescape(getQueryVariable("op1"))+getQueryVariable("tx1") + " " + unescape(getQueryVariable("op2"))+getQueryVariable("tx2"); 
        }
       return qsValue;
}//end getQueryVariable

function getResults(htmElement,cssClass,argReturn){
    //determine whether search failed or was a success
    var paras = document.getElementsByTagName(htmElement);
    for(var i=0; i< paras.length; i++){
        //find the bresult count paragraph
        if(paras[i].getAttribute("class")==cssClass || paras[i].getAttribute("className")==cssClass){
            //the search was a success
            var success = 1;
			if(argReturn == "innerHTML"){
				return paras[i].innerHTML;
			}
            break;
        }//found search results
    }//looped through divs
	return success?1:0;
}//end getResults


function fnSetReferrer(){
	//set custom referrer if visit is from an email campaign
	if(document.referrer.length == 0  && document.location.href.indexOf("=EMC-") != -1){
		return "Email Campaign"
	} else {
		return "";
	}
}//end fnSet Referrer

function fnDirPath(argSite){
	//populate mlc with passed in site name and directory structure from URL
	loc = window.location.pathname ;
	Re = new RegExp(/(.*)\/(.*)$/) ;
	tmpArray = Re.exec(loc) ;
	dirPath = "/" + argSite + tmpArray[1] ;
	return dirPath;
} //end fnDirPath

//localized pages
function getCountry(){

var thisDomain = window.location.host ;
var country ;

countries = new Array ("korea", "china", "europe", "global", "landing", "snaptrack", "cmx", "cmx_china", "public_relations", "qmr", "speqg", "support", "uione", "gobi", "qctconnect") ;

domains = new Array ("3gchipsets.co.kr", "cdmatech.com.cn", "umtschips.com", "cdmatech.com", "3gchipsets.com", "snaptrack.com", "cmx.qualcomm.com", "cmx.qualcomm.cn", "pointprteam.qualcomm.com", "qmr.qualcomm.com", "speqg.com", "support.cdmatech.com", "uione.qualcomm.com", "gobianywhere.com", "qctconnect.com") ;


for (var i = 0; i < domains.length ; i++) {
  var Re = new RegExp(domains[i],'i') ;
  if (Re.test(thisDomain)) {
    country = countries[i] ;
    break;
  }
}
country = country?country:"localized site";
return country;
}//getCountry

//check flash version for custom variable
var flash2Installed = false;    // boolean. true if flash 2 is installed
var flash3Installed = false;    // boolean. true if flash 3 is installed
var flash4Installed = false;    // boolean. true if flash 4 is installed
var flash5Installed = false;    // boolean. true if flash 5 is installed
var flash6Installed = false;    // boolean. true if flash 6 is installed
var flash7Installed = false;    // boolean. true if flash 7 is installed
var flash8Installed = false;    // boolean. true if flash 8 is installed
var flash9Installed = false;    // boolean. true if flash 9 is installed
var maxVersion = 9;             // highest version we can actually detect
var actualVersion = 0;          // version the user really has
var hasRightVersion = false;    // boolean. true if it's safe to embed the flash movie in the page
var jsVersion = 1.0;            // the version of javascript supported
// =============================================================================
// Check the browser...we're looking for ie/win
var isIE  = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;    // true if we're on ie
var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false; // true if we're on windows


// This is a js1.1 code block, so make note that js1.1 is supported.
jsVersion = 1.1;

// Write vbscript detection on ie win. IE on Windows doesn't support regular
// JavaScript plugins array detection.
if(isIE && isWin){
  document.write('<SCR' + 'IPT LANGUAGE=VBScript\> \n');
  document.write('on error resume next \n');
  document.write('flash2Installed = (IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.2"))) \n');
  document.write('flash3Installed = (IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.3"))) \n');
  document.write('flash4Installed = (IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.4"))) \n');
  document.write('flash5Installed = (IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.5"))) \n');
  document.write('flash6Installed = (IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.6"))) \n');
  document.write('flash7Installed = (IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.7"))) \n');
  document.write('flash8Installed = (IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.8"))) \n');
  document.write('flash9Installed = (IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.9"))) \n');
  document.write('<\/SCR' + 'IPT\> \n'); // break up end tag so it doesn't end our script
}
// moock fpi [f.lash p.layer i.nspector]
// version: 1.3.7
// written by colin moock
// code maintained at: http://www.moock.org/webdesign/flash/detection/moockfpi/
// terms of use posted at: http://www.moock.org/terms/



// =============================================================================
// Next comes the standard javascript detection that uses the
// navigator.plugins array. We pack the detector into a function so that
// it preloads before being run.
var flashversion = 'Flash Version: None';

function detectFlash() {
  // If navigator.plugins exists...
  if (navigator.plugins) {
    // ...then check for flash 2 or flash 3+.
    if (navigator.plugins["Shockwave Flash 2.0"]
        || navigator.plugins["Shockwave Flash"]) {

      // Some version of Flash was found. Time to figure out which.

      // Set convenient references to flash 2 and the plugin description.
      var isVersion2 = navigator.plugins["Shockwave Flash 2.0"] ? " 2.0" : "";
      var flashDescription = navigator.plugins["Shockwave Flash" + isVersion2].description;

      // DEBUGGING: uncomment next line to see the actual description.
      // alert("Flash plugin description: " + flashDescription);

      // A flash plugin-description looks like this: Shockwave Flash 4.0 r5
      // We can get the major version by grabbing the character before the period
      // note that we don't bother with minor version detection.
      // Do that in your movie with $version or getVersion().
      var flashVersion = parseInt(flashDescription.substring(16));

      // We found the version, now set appropriate version flags. Make sure
      // to use >= on the highest version so we don't prevent future version
      // users from entering the site.
      flash2Installed = flashVersion == 2;
      flash3Installed = flashVersion == 3;
      flash4Installed = flashVersion == 4;
      flash5Installed = flashVersion == 5;
      flash6Installed = flashVersion == 6;
      flash7Installed = flashVersion == 7;
      flash8Installed = flashVersion == 8;
      flash9Installed = flashVersion >= 9;
    }
  }

  // Loop through all versions we're checking, and
  // set actualVersion to highest detected version.
  for (var i = 2; i <= maxVersion; i++) {  
    if (eval("flash" + i + "Installed") == true) actualVersion = i;
  }

  // January 1, 2004). Note that we don't bother sniffing varieties
  // of msntv. You could if you were sadistic...
  if(navigator.userAgent.indexOf("WebTV") != -1) actualVersion = 4;

  // DEBUGGING: uncomment next line to display flash version
  // alert("version detected: " + actualVersion);


  // We're finished getting the version on all browsers that support detection.
  // Time to take the appropriate action.

  // If the user has a new enough version...
  if (actualVersion > 0)
    flashversion = 'Flash Version: ' + actualVersion;
}
detectFlash();  // call our detector now that it's safely loaded.

function getIEPlugins() {
	var ieplugins = new Array();
	var iepluginslist = "";
	ieplugins[0] = 'Java';
	ieplugins[1] = 'Flash';
	ieplugins[2] = 'Shockwave';
	ieplugins[3] = 'Windows Media Player';
	ieplugins[4] = 'QuickTime';
	for(var i=0;i<ieplugins.length;i++){
		var version=PluginDetect.getVersion(ieplugins[i]);
		if(version != null) {
			version = version.replace(/,/g,".");
		} else {
			version = "not installed or not detected";
		}
		iepluginslist += "IE|" +ieplugins[i] + " " + version +",";
	}
	return iepluginslist;
}

function getPlugins() {
	if(PluginDetect.isIE) {
		return getIEPlugins();
	} else {
		var pluginList = "";
		for(var i=0;i<navigator.plugins.length;i++) {
			if(pluginList.indexOf(navigator.plugins[i].name) == -1) {
				pluginList += "Other|" + navigator.plugins[i].name + ",";
			}
		}
	return pluginList;
	}
}