//QIS functions
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

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

function createPageName(){
	tmpFilename = ""
	//special cases
	if(document.location.href.indexOf("search/pop/query.html")>0){
		pageTitle = "Results";
	} else {
		//use the HTML page title and file name to create a unique page name
		var pagename = document.title;
		//strip page title prefix
		string1 = "QUALCOMM BREW | ";
		string2 = "QUALCOMM | ";
		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 {
			pageTitle = document.title;
		}
		//add file name
		var tmpFilename = location.pathname.substring(location.pathname.lastIndexOf('\/')+1); 
		if(tmpFilename.length > 0 && tmpFilename != "index.jsp"){
			tmpFilename = "[" + tmpFilename.substring(0,tmpFilename.lastIndexOf('.')) + "]"; 
		} else {
			tmpFilename = "";
		}
	}
	
	//more special cases
	if (getQueryVariable("type") == "form" || document.URL.indexOf("/rfi.jsp") > 1) {
		htmlEment = "div"
		cssClass = "contentminheight"
		tmpFilename +=  checkPageType(htmlEment,cssClass)?checkPageType(htmlEment,cssClass):""
	} else if (getQueryVariable("type") == "popup") {
		tmpFilename +=  " Print"
	} else if (document.URL.indexOf("/sub_signup.jsp") > 1) {
		htmlEment = "span"
		cssClass = "bodynormal"
		tmpFilename +=  checkPageType(htmlEment,cssClass)?checkPageType(htmlEment,cssClass):""
	} else if (document.URL.indexOf("/gaming_contact.jsp") > 1) {
		htmlEment = "div"
		cssClass = "contentminheight"
		tmpFilename +=  checkPageType(htmlEment,cssClass)?checkPageType(htmlEment,cssClass):""
	}
	//remove special characters
	pageTitle = pageTitle.slice(0,75);
	return _hbxStrip(pageTitle + tmpFilename);
}//end createPageName

function checkPageType(htmlEment,cssClass){
		//find the html element
		
		var paras = document.getElementsByTagName(htmlEment);
	    for(var i=0; i< paras.length; i++){
        	//find the class
        	if(paras[i].getAttribute("class")==cssClass || paras[i].getAttribute("className")==cssClass || document.getElementById(cssClass).innerHTML.length > 1){
            	//class was found
				//look for form
				if(document.getElementById(cssClass).innerHTML.length > 1){
					tmpString = document.getElementById(cssClass).innerHTML;
				} else {
					tmpString = paras[i].innerHTML;
				}
				if(tmpString.indexOf("<form") > 0){
					return " Email";
				} else if(tmpString.indexOf("<li>") > 0){
				//look for list
					return " Error"
				} else {
					//otherwise success
					return " Sent"
        		}//found results

			}
		}//looped through divs

}

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

//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.

