﻿function getKeyWordText(){
    var objURL = new Object();
    window.location.search.replace(new RegExp( "([^?=&]+)(=([^&]*))?", "g"), function( $0, $1, $2, $3 ){objURL[$1] = $3;});
    var passed_string = "";
    for (var strKey in objURL){
    if(strKey="clx"){
        passed_string = passed_string + " " + objURL[strKey]
        }
    }
    var strReplaceAll = passed_string;
    var intIndexOfMatch = strReplaceAll.indexOf("_");
    while (intIndexOfMatch != -1){
        strReplaceAll = strReplaceAll.replace("_"," ");
        intIndexOfMatch = strReplaceAll.indexOf("_");
    }
    document.getElementById("spnKeyWordHeader").innerHTML = "Have questions about <br />" + strReplaceAll + "?";
}

function window_open(filename, x, y)
{
  windowops = eval("'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=" + x + ",height=" + y + "'");
  window.open(filename, 'art', windowops);
  return;
}