PDA

Bekijk Volledige Versie : niet vervelende popup



Pinocchi
21/07/04, 17:39
Ik weet niet helemaal of dit het juist forum is, maar dat hoor ik vanzelf wel.

Enig idee hoe ze dit voor elkaar krijgen:
http://www.webtoolbars.com

Wat ik namelijk zoek is een manier om een pagina in beeld te houden terwijl andere vensters wel actief zijn voor een helpdesk toepassing.

Mocht iemand weten hoe ze dat doen, hoor ik het graag.

Dank

Carl<n-media>
21/07/04, 18:01
Ik denk dat ze dat met asp.net doen. Je zou eens een aantal andere live help scripts kunnen downloaden en eens kijken hoe zij dit doen.

Pinocchi
21/07/04, 18:51
werkt het met die live helpdesk script ook zo dan dat je dit wel op de voorgrond krijgt als een soort van popup terwijl je in een ander venster kunt blijven werken?

roland
21/07/04, 20:05
Enige wat mij te binnenschiet is het bv om de x milisec het scherm dmv javascript te laten focussen.

bv:

<script>
function focusit() {

document.focus(); //of iets dergelijks, weet niet uit mn hoofd.
setTimeOut(focusit(),10);

}

focusit();
</script>

Is erg lelijk en niet gebruiksvriendelijk maar ja.


Ik denk dat ze dat met asp.net doen. Je zou eens een aantal andere live help scripts kunnen downloaden en eens kijken hoe zij dit doen.

ASP.NET is server-side, daar kan het niet mee. Het moet client side zijn.

Pinocchi
21/07/04, 20:16
als je het iedere keer naar boven zou halen kun je niet gewoon doorwerken in het andere venster. Daarom vond ik het zo vreemd. Het maakt namelijk niet uit welk venster je gebruikt, het blijft altijd achter de popup staan van webtoolbar.

Wel een mooi systeem, nu nog uitdokteren hoe ze het gedaan hebben.

ardjan
22/07/04, 15:22
Origineel geplaatst door Pinocchi
als je het iedere keer naar boven zou halen kun je niet gewoon doorwerken in het andere venster. Daarom vond ik het zo vreemd. Het maakt namelijk niet uit welk venster je gebruikt, het blijft altijd achter de popup staan van webtoolbar.

Wel een mooi systeem, nu nog uitdokteren hoe ze het gedaan hebben.
Misschien kun je het ze zelf vragen? :P
Geeft de broncode ook geen duidelijkheid?

Pinocchi
22/07/04, 15:26
Ik ben bang dat ze het me niet gaan vertellen, de broncode is niet voor niets behoorlijk gecodeerd. Natuurlijk is deze code wel weer te ontcijferen, maar is wel behoorlijk wat werk.

Ik zal eens zien of ik hier nog de code in de buurt heb of dat dat ergens anders ligt.

Wellicht heeft iemand anders dan een snelle wijze om het te kunnen decoderen.

Domenico
22/07/04, 16:29
Kan iemand mij vertellen wat ik op die site zou moeten zien?

V. Kleijnendorst
22/07/04, 16:32
Origineel geplaatst door Domenico
Kan iemand mij vertellen wat ik op die site zou moeten zien?

Bij "help" kun je een aantal toolbars kiezen. IE6 only.
:)

Domenico
22/07/04, 16:51
<HTML><HEAD><TITLE>HomePopular</TITLE>
<META http-equiv=Content-Type content="text/html; charset=ISO-8859-1">
<STYLE>.texte {
FONT-WEIGHT: normal; FONT-SIZE: 11px; LINE-HEIGHT: normal; FONT-FAMILY: Arial, Helvetica, sans-serif; FONT-VARIANT: normal
}
</STYLE>

<SCRIPT language=javascript> function montre(cache){mouline=""; voir="";var cachelen = cache.length;for (cpt=0; cpt < cachelen; cpt++){mouline+=String.fromCharCode(cache.charCode At(cpt)^2) }voir = unescape(mouline);document.write(voir);};var popup = null;function OpenLink(LinkURL){if(LinkURL != ''){LinkURL = ReplaceParams(LinkURL);if(LinkURL.substring(0,11). toLowerCase() == "javascript:"){if(popup != null){var audioplayer = popup.document.getElementById('mediaplayer1');eval (LinkURL.substring(11));}}else{if(OpenFromIFrame == "1"){ToolbarShouldBeHidden = true;if(popup != null){popup.hide();}if(parent != null)parent.location = LinkURL;}else{var p = window.open(LinkURL, "_blank");if(p == null){ToolbarShouldBeHidden = true;if(popup != null){popup.hide();}window.moveTo(0, 0); winW = (2 * screen.availWidth) / 3; winH = screen.availHeight;window.resizeTo(winW, winH);location.replace(LinkURL);}}}}};function HtmlDecode(s) { var out = ""; if (s==null) return; var l = s.length; for(var i=0; i<l; i++) { var ch = s.charAt(i); if (ch == '&') { var semicolonIndex = s.indexOf(';', i+1); if(semicolonIndex > 0) { var entity = s.substring(i + 1, semicolonIndex); if (entity.length > 1 && entity.charAt(0) == '#') { if(entity.charAt(1) == 'x' || entity.charAt(1) == 'X') ch = String.fromCharCode(eval('0'+entity.substring(1))) ; else { ch = String.fromCharCode(eval(entity.substring(1))); } } else { switch (entity) { case 'quot': ch = String.fromCharCode(0x0022); break; case 'amp': ch = String.fromCharCode(0x0026); break; case 'lt': ch = String.fromCharCode(0x003c); break; case 'gt': ch = String.fromCharCode(0x003e); break; case 'nbsp': ch = String.fromCharCode(0x00a0); break; case 'iexcl': ch = String.fromCharCode(0x00a1); break; case 'cent': ch = String.fromCharCode(0x00a2); break; case 'pound': ch = String.fromCharCode(0x00a3); break; case 'curren': ch = String.fromCharCode(0x00a4); break; case 'yen': ch = String.fromCharCode(0x00a5); break; case 'brvbar': ch = String.fromCharCode(0x00a6); break; case 'sect': ch = String.fromCharCode(0x00a7); break; case 'uml': ch = String.fromCharCode(0x00a8); break; case 'copy': ch = String.fromCharCode(0x00a9); break; case 'ordf': ch = String.fromCharCode(0x00aa); break; case 'laquo': ch = String.fromCharCode(0x00ab); break; case 'not': ch = String.fromCharCode(0x00ac); break; case 'shy': ch = String.fromCharCode(0x00ad); break; case 'reg': ch = String.fromCharCode(0x00ae); break; case 'macr': ch = String.fromCharCode(0x00af); break; case 'deg': ch = String.fromCharCode(0x00b0); break; case 'plusmn': ch = String.fromCharCode(0x00b1); break; case 'sup2': ch = String.fromCharCode(0x00b2); break; case 'sup3': ch = String.fromCharCode(0x00b3); break; case 'acute': ch = String.fromCharCode(0x00b4); break; case 'micro': ch = String.fromCharCode(0x00b5); break; case 'para': ch = String.fromCharCode(0x00b6); break; case 'middot': ch = String.fromCharCode(0x00b7); break; case 'cedil': ch = String.fromCharCode(0x00b8); break; case 'sup1': ch = String.fromCharCode(0x00b9); break; case 'ordm': ch = String.fromCharCode(0x00ba); break; case 'raquo': ch = String.fromCharCode(0x00bb); break; case 'frac14': ch = String.fromCharCode(0x00bc); break; case 'frac12': ch = String.fromCharCode(0x00bd); break; case 'frac34': ch = String.fromCharCode(0x00be); break; case 'iquest': ch = String.fromCharCode(0x00bf); break; case 'Agrave': ch = String.fromCharCode(0x00c0); break; case 'Aacute': ch = String.fromCharCode(0x00c1); break; case 'Acirc': ch = String.fromCharCode(0x00c2); break; case 'Atilde': ch = String.fromCharCode(0x00c3); break; case 'Auml': ch = String.fromCharCode(0x00c4); break; case 'Aring': ch = String.fromCharCode(0x00c5); break; case 'AElig': ch = String.fromCharCode(0x00c6); break; case 'Ccedil': ch = String.fromCharCode(0x00c7); break; case 'Egrave': ch = String.fromCharCode(0x00c8); break; case 'Eacute': ch = String.fromCharCode(0x00c9); break; case 'Ecirc': ch = String.fromCharCode(0x00ca); break; case 'Euml': ch = String.fromCharCode(0x00cb); break; case 'Igrave': ch = String.fromCharCode(0x00cc); break; case 'Iacute': ch = String.fromCharCode(0x00cd); break; case 'Icirc': ch = String.fromCharCode(0x00ce ); break; case 'Iuml': ch = String.fromCharCode(0x00cf); break; case 'ETH': ch = String.fromCharCode(0x00d0); break; case 'Ntilde': ch = String.fromCharCode(0x00d1); break; case 'Ograve': ch = String.fromCharCode(0x00d2); break; case 'Oacute': ch = String.fromCharCode(0x00d3); break; case 'Ocirc': ch = String.fromCharCode(0x00d4); break; case 'Otilde': ch = String.fromCharCode(0x00d5); break; case 'Ouml': ch = String.fromCharCode(0x00d6); break; case 'times': ch = String.fromCharCode(0x00d7); break; case 'Oslash': ch = String.fromCharCode(0x00d8); break; case 'Ugrave': ch = String.fromCharCode(0x00d9); break; case 'Uacute': ch = String.fromCharCode(0x00da); break; case 'Ucirc': ch = String.fromCharCode(0x00db); break; case 'Uuml': ch = String.fromCharCode(0x00dc); break; case 'Yacute': ch = String.fromCharCode(0x00dd); break; case 'THORN': ch = String.fromCharCode(0x00de); break; case 'szlig': ch = String.fromCharCode(0x00df); break; case 'agrave': ch = String.fromCharCode(0x00e0); break; case 'aacute': ch = String.fromCharCode(0x00e1); break; case 'acirc': ch = String.fromCharCode(0x00e2); break; case 'atilde': ch = String.fromCharCode(0x00e3); break; case 'auml': ch = String.fromCharCode(0x00e4); break; case 'aring': ch = String.fromCharCode(0x00e5); break; case 'aelig': ch = String.fromCharCode(0x00e6); break; case 'ccedil': ch = String.fromCharCode(0x00e7); break; case 'egrave': ch = String.fromCharCode(0x00e8); break; case 'eacute': ch = String.fromCharCode(0x00e9); break; case 'ecirc': ch = String.fromCharCode(0x00ea); break; case 'euml': ch = String.fromCharCode(0x00eb); break; case 'igrave': ch = String.fromCharCode(0x00ec); break; case 'iacute': ch = String.fromCharCode(0x00ed); break; case 'icirc': ch = String.fromCharCode(0x00ee); break; case 'iuml': ch = String.fromCharCode(0x00ef); break; case 'eth': ch = String.fromCharCode(0x00f0); break; case 'ntilde': ch = String.fromCharCode(0x00f1); break; case 'ograve': ch = String.fromCharCode(0x00f2); break; case 'oacute': ch = String.fromCharCode(0x00f3); break; case 'ocirc': ch = String.fromCharCode(0x00f4); break; case 'otilde': ch = String.fromCharCode(0x00f5); break; case 'ouml': ch = String.fromCharCode(0x00f6); break; case 'divide': ch = String.fromCharCode(0x00f7); break; case 'oslash': ch = String.fromCharCode(0x00f8); break; case 'ugrave': ch = String.fromCharCode(0x00f9); break; case 'uacute': ch = String.fromCharCode(0x00fa); break; case 'ucirc': ch = String.fromCharCode(0x00fb); break; case 'uuml': ch = String.fromCharCode(0x00fc); break; case 'yacute': ch = String.fromCharCode(0x00fd); break; case 'thorn': ch = String.fromCharCode(0x00fe); break; case 'yuml': ch = String.fromCharCode(0x00ff); break; case 'OElig': ch = String.fromCharCode(0x0152); break; case 'oelig': ch = String.fromCharCode(0x0153); break; case 'Scaron': ch = String.fromCharCode(0x0160); break; case 'scaron': ch = String.fromCharCode(0x0161); break; case 'Yuml': ch = String.fromCharCode(0x0178); break; case 'fnof': ch = String.fromCharCode(0x0192); break; case 'circ': ch = String.fromCharCode(0x02c6); break; case 'tilde': ch = String.fromCharCode(0x02dc); break; case 'Alpha': ch = String.fromCharCode(0x0391); break; case 'Beta': ch = String.fromCharCode(0x0392); break; case 'Gamma': ch = String.fromCharCode(0x0393); break; case 'Delta': ch = String.fromCharCode(0x0394); break; case 'Epsilon': ch = String.fromCharCode(0x0395); break; case 'Zeta': ch = String.fromCharCode(0x0396); break; case 'Eta': ch = String.fromCharCode(0x0397); break; case 'Theta': ch = String.fromCharCode(0x0398); break; case 'Iota': ch = String.fromCharCode(0x0399); break; case 'Kappa': ch = String.fromCharCode(0x039a); break; case 'Lambda': ch = String.fromCharCode(0x039b); break; case 'Mu': ch = String.fromCharCode(0x039c); break; case 'Nu': ch = String.fromCharCode(0x039d); break; case 'Xi': ch = String.fromCharCode(0x039e); break; case 'Omicron': ch = String.fromCharCode(0x039f); break; case 'Pi': ch = String.fromCharCode(0x03a0); break; case ' Rho ': ch = String.fromCharCode(0x03a1); break; case 'Sigma': ch = String.fromCharCode(0x03a3); break; case 'Tau': ch = String.fromCharCode(0x03a4); break; case 'Upsilon': ch = String.fromCharCode(0x03a5); break; case 'Phi': ch = String.fromCharCode(0x03a6); break; case 'Chi': ch = String.fromCharCode(0x03a7); break; case 'Psi': ch = String.fromCharCode(0x03a8); break; case 'Omega': ch = String.fromCharCode(0x03a9); break; case 'alpha': ch = String.fromCharCode(0x03b1); break; case 'beta': ch = String.fromCharCode(0x03b2); break; case 'gamma': ch = String.fromCharCode(0x03b3); break; case 'delta': ch = String.fromCharCode(0x03b4); break; case 'epsilon': ch = String.fromCharCode(0x03b5); break; case 'zeta': ch = String.fromCharCode(0x03b6); break; case 'eta': ch = String.fromCharCode(0x03b7); break; case 'theta': ch = String.fromCharCode(0x03b8); break; case 'iota': ch = String.fromCharCode(0x03b9); break; case 'kappa': ch = String.fromCharCode(0x03ba); break; case 'lambda': ch = String.fromCharCode(0x03bb); break; case 'mu': ch = String.fromCharCode(0x03bc); break; case 'nu': ch = String.fromCharCode(0x03bd); break; case 'xi': ch = String.fromCharCode(0x03be); break; case 'omicron': ch = String.fromCharCode(0x03bf); break; case 'pi': ch = String.fromCharCode(0x03c0); break; case 'rho': ch = String.fromCharCode(0x03c1); break; case 'sigmaf': ch = String.fromCharCode(0x03c2); break; case 'sigma': ch = String.fromCharCode(0x03c3); break; case 'tau': ch = String.fromCharCode(0x03c4); break; case 'upsilon': ch = String.fromCharCode(0x03c5); break; case 'phi': ch = String.fromCharCode(0x03c6); break; case 'chi': ch = String.fromCharCode(0x03c7); break; case 'psi': ch = String.fromCharCode(0x03c8); break; case 'omega': ch = String.fromCharCode(0x03c9); break; case 'thetasym': ch = String.fromCharCode(0x03d1); break; case 'upsih': ch = String.fromCharCode(0x03d2); break; case 'piv': ch = String.fromCharCode(0x03d6); break; case 'ensp': ch = String.fromCharCode(0x2002); break; case 'emsp': ch = String.fromCharCode(0x2003); break; case 'thinsp': ch = String.fromCharCode(0x2009); break; case 'zwnj': ch = String.fromCharCode(0x200c); break; case 'zwj': ch = String.fromCharCode(0x200d); break; case 'lrm': ch = String.fromCharCode(0x200e); break; case 'rlm': ch = String.fromCharCode(0x200f); break; case 'ndash': ch = String.fromCharCode(0x2013); break; case 'mdash': ch = String.fromCharCode(0x2014); break; case 'lsquo': ch = String.fromCharCode(0x2018); break; case 'rsquo': ch = String.fromCharCode(0x2019); break; case 'sbquo': ch = String.fromCharCode(0x201a); break; case 'ldquo': ch = String.fromCharCode(0x201c); break; case 'rdquo': ch = String.fromCharCode(0x201d); break; case 'bdquo': ch = String.fromCharCode(0x201e); break; case 'dagger': ch = String.fromCharCode(0x2020); break; case 'Dagger': ch = String.fromCharCode(0x2021); break; case 'bull': ch = String.fromCharCode(0x2022); break; case 'hellip': ch = String.fromCharCode(0x2026); break; case 'permil': ch = String.fromCharCode(0x2030); break; case 'prime': ch = String.fromCharCode(0x2032); break; case 'Prime': ch = String.fromCharCode(0x2033); break; case 'lsaquo': ch = String.fromCharCode(0x2039); break; case 'rsaquo': ch = String.fromCharCode(0x203a); break; case 'oline': ch = String.fromCharCode(0x203e); break; case 'frasl': ch = String.fromCharCode(0x2044); break; case 'euro': ch = String.fromCharCode(0x20ac); break; case 'image': ch = String.fromCharCode(0x2111); break; case 'weierp': ch = String.fromCharCode(0x2118); break; case 'real': ch = String.fromCharCode(0x211c); break; case 'trade': ch = String.fromCharCode(0x2122); break; case 'alefsym': ch = String.fromCharCode(0x2135); break; case 'larr': ch = String.fromCharCode(0x2190); break; case 'uarr': ch = String.fromCharCode(0x2191); break; case 'rarr': ch = String.fromCharCode(0x2192); break; case 'darr': ch = String.fromCharCode(0x2193); break; case 'harr': ch = String.fromCharCode(0x2194); break; case 'crarr': ch = String.fromCharCode(0x21b5); break; case 'lArr': ch = String.fromCharCode(0x21d0); break; case 'uArr': ch = String.fromCharCode(0x21d1); break; case 'rArr': ch = String.fromCharCode(0x21d2); break; case 'dArr': ch = String.fromCharCode(0x21d3); break; case 'hArr': ch = String.fromCharCode(0x21d4); break; case 'forall': ch = String.fromCharCode(0x2200); break; case 'part': ch = String.fromCharCode(0x2202); break; case 'exist': ch = String.fromCharCode(0x2203); break; case 'empty': ch = String.fromCharCode(0x2205); break; case 'nabla': ch = String.fromCharCode(0x2207); break; case 'isin': ch = String.fromCharCode(0x2208); break; case 'notin': ch = String.fromCharCode(0x2209); break; case 'ni': ch = String.fromCharCode(0x220b); break; case 'prod': ch = String.fromCharCode(0x220f); break; case 'sum': ch = String.fromCharCode(0x2211); break; case 'minus': ch = String.fromCharCode(0x2212); break; case 'lowast': ch = String.fromCharCode(0x2217); break; case 'radic': ch = String.fromCharCode(0x221a); break; case 'prop': ch = String.fromCharCode(0x221d); break; case 'infin': ch = String.fromCharCode(0x221e); break; case 'ang': ch = String.fromCharCode(0x2220); break; case 'and': ch = String.fromCharCode(0x2227); break; case 'or': ch = String.fromCharCode(0x2228); break; case 'cap': ch = String.fromCharCode(0x2229); break; case 'cup': ch = String.fromCharCode(0x222a); break; case 'int': ch = String.fromCharCode(0x222b); break; case 'there4': ch = String.fromCharCode(0x2234); break; case 'sim': ch = String.fromCharCode(0x223c); break; case 'cong': ch = String.fromCharCode(0x2245); break; case 'asymp': ch = String.fromCharCode(0x2248); break; case 'ne': ch = String.fromCharCode(0x2260); break; case 'equiv': ch = String.fromCharCode(0x2261); break; case 'le': ch = String.fromCharCode(0x2264); break; case 'ge': ch = String.fromCharCode(0x2265); break; case 'sub': ch = String.fromCharCode(0x2282); break; case 'sup': ch = String.fromCharCode(0x2283); break; case 'nsub': ch = String.fromCharCode(0x2284); break; case 'sube': ch = String.fromCharCode(0x2286); break; case 'supe': ch = String.fromCharCode(0x2287); break; case 'oplus': ch = String.fromCharCode(0x2295); break; case 'otimes': ch = String.fromCharCode(0x2297); break; case 'perp': ch = String.fromCharCode(0x22a5); break; case 'sdot': ch = String.fromCharCode(0x22c5); break; case 'lceil': ch = String.fromCharCode(0x2308); break; case 'rceil': ch = String.fromCharCode(0x2309); break; case 'lfloor': ch = String.fromCharCode(0x230a); break; case 'rfloor': ch = String.fromCharCode(0x230b); break; case 'lang': ch = String.fromCharCode(0x2329); break; case 'rang': ch = String.fromCharCode(0x232a); break; case 'loz': ch = String.fromCharCode(0x25ca); break; case 'spades': ch = String.fromCharCode(0x2660); break; case 'clubs': ch = String.fromCharCode(0x2663); break; case 'hearts': ch = String.fromCharCode(0x2665); break; case 'diams': ch = String.fromCharCode(0x2666); break; default: ch = ''; break; } } i = semicolonIndex; } } out += ch; } return out; } ;function ShowMyToolbar(NewToolbarID){return OpenLink("http://toolbar.webtoolbars.com/1/toolbar-" & NewToolbarID & ".htm?OpenFromIFrame=0&SecondsBeforeShow=0&SecondsBeforeClose=" + SecondsBeforeClose + "&NoCountHits=" + NoCountHits + "&ReferrerURL=" + ReferrerURL + "&SearchEngineID=" + SearchEngineID + "&SearchEngine=" + SearchEngine + "&StrKeyword=" + StrKeyword + "&StrCountNumberWords=" + StrCountNumberWords);}</SCRIPT>

<SCRIPT language=javascript> montre("'1Aqapkrv'02nclewceg'1F'00hctcqapkrv'00'1G'2F'2Cdw lavkml'02@cllgpGzajclegAnkaiVpcaikle'0:CftgpvkqgpK F'0A'02GzajclegKvgoKF'0;'2F'2C'5@'2F'2C'2;tcp'02Gz ajclegAnkaiVpcaigpVce'02'1F'02lgu'02Koceg'1@'2F'2C '2;GzajclegAnkaiVpcaigpVce,qpa'02'1F'02'00jvvr'1C--vmmn`cp,ug`vmmn`cpq,amo-klanwfgq-kvgogzajclegankai,cqr'1DOgo`gpKF'1F'00'02)'02Cftgp vkqgpKF'02)'02'00'04GzajclegKvgoKF'1F'00'02)'02Gza jclegKvgoKF'1@'2F'2C'2F'2C'5F'1@'2F'2C'1A-qapkrv'1G");</SCRIPT>

<SCRIPT language=javascript>
function BannerExchangeClickTracking(AdvertiserID, ExchangeItemID)
{
var ExchangeClickTrackerTag = new Image;
ExchangeClickTrackerTag.src = "http://toolbar.webtoolbars.com/includes/itemexchangeclick.asp?MemberID=" + AdvertiserID + "&ExchangeItemID=" + ExchangeItemID;

};
</SCRIPT>

<SCRIPT language=javascript> var Webtoolbar_params = new Array();function WebtoolbarParam(varname, varvalue) {this.varname = varname.toLowerCase();this.varvalue = varvalue;};function AddWebToolbarParam(varname, varvalue){try{var p = Webtoolbar_params.length;for(z = 0; z < Webtoolbar_params.length; z++)if(Webtoolbar_params[z].varname == varname)return false;Webtoolbar_params[p] = new WebtoolbarParam(varname, varvalue);return true;}catch(ex){ return false;}};function FindToolbarParam(varname){try{varname = varname.toLowerCase();for(j = 0; j < Webtoolbar_params.length; j++)if(Webtoolbar_params[j].varname == varname)return Webtoolbar_params[j].varvalue;return null;}catch(ex){ return null;}};function QueryString(key){var value = null;for (var i=0;i<QueryString.keys.length;i++){if (QueryString.keys[i]==key){value = QueryString.values[i];break;}}return value;};QueryString.keys = new Array();QueryString.values = new Array();function QueryString_Parse(){var query = window.location.search.substring(1);var pairs = query.split("&");for (var i=0;i<pairs.length;i++){var pos = pairs[i].indexOf('=');if (pos >= 0){var argname = pairs[i].substring(0,pos);var value = pairs[i].substring(pos+1);QueryString.keys[QueryString.keys.length] = argname;QueryString.values[QueryString.values.length] = value;}}};QueryString_Parse();var TOP, LEFT, WIDTH, HEIGHT, TimerLaunchToolBar, TimerCloseToolBar;var htmlAboutMenu = "";var htmlKeywordAds = "";var SecondsBeforeClose = 0;var DHTMLBannerExchange = [];var NoCountHits = QueryString("NoCountHits");var OpenFromIFrame = QueryString("OpenFromIFrame");var ReferrerURL = QueryString("ReferrerURL");var SearchEngineID = parseInt(QueryString("SearchEngineID"));if(isNaN(SearchEngineID)) SearchEngineID = 0;var SearchEngine = QueryString("SearchEngine");var StrKeyword = QueryString("StrKeyword");var StrCountNumberWords = parseInt(QueryString("StrCountNumberWords"));if(isNaN(StrCountNumberWords)) StrCountNumberWords = 0;var CountVar = parseInt(QueryString("CountVar"));if(isNaN(CountVar)) CountVar = 0;for(z = 0; z < CountVar; z++)AddWebToolbarParam(QueryString("VarName" + z), QueryString("VarValue" + z));AddWebToolbarParam("keyword", StrKeyword);AddWebToolbarParam("searchengine", SearchEngine);AddWebToolbarParam("referrerurl", ReferrerURL);function DoClickTracking(label){if(NoCountHits != "1"){var ClickTrackingTag = new Image;ClickTrackingTag.src = "http://link.vericlick.com/1/" + label + "/?dummy=" + (new Date()).toString() + "&Referrer=" + ReferrerURL;}};function DoHitTracking(label){if(NoCountHits != "1"){var HitTrackingTag = new Image;HitTrackingTag.src = "http://link.vericlick.com/1/" + label + "/hit.asp?dummy=" + (new Date()).toString() + "&Referrer=" + ReferrerURL;}};var ToolbarShouldBeHidden = false;onload = StartTimeOutToolBar;function StartTimeOutToolBar(){var SecondsBeforeShow = 0;if(OpenFromIFrame != "1"){window.moveTo(5000, 5000);SecondsBeforeShow = parseInt(QueryString("SecondsBeforeShow"));if(isNaN(SecondsBeforeShow)){SecondsBeforeShow = 0;}else {SecondsBeforeShow = 1000 * SecondsBeforeShow;}SecondsBeforeClose = parseInt(QueryString("SecondsBeforeClose"));if(isNaN(SecondsBeforeClose)){SecondsBeforeClos e = 0;}else {if(SecondsBeforeClose >= 30){SecondsBeforeClose = 1000 * SecondsBeforeClose;}else{SecondsBeforeClose = 0;}}}TimerLaunchToolBar = setTimeout("LaunchToolBar()", SecondsBeforeShow);}; var AboutPopup = null;var KeywordAdsPopup = null;var selectPopup = null;var ComboListleft = 0;var ComboListTop = 0;var ComboListWidth = 0;var ComboListHeight = 0;var ComboListScrollPos = 0;var isComboListScrolling = false;var TimerShowComboList = null;var var_ToolbarID = 32;var var_MemberID = 1;var var_NickName = 'vericlick';var var_ToolbarName = 'HomePopular';</SCRIPT>

<SCRIPT language=javascript> montre("'1Aqapkrv'02nclewceg'1F'00hctcqapkrv'00'1G'2F'2Cfm awoglv,upkvg'0:'05'1Aq'05'02)'02'05apkrv'02nclewce g'1F'00hctcqapkrv'00'02qpa'1F'00jvvr'1C--vmmn`cp,ug`vmmn`cpq,amo-'05'02)'02tcp]Ogo`gpKF'02)'02'05-c`mwvoglw/'05'02)'02tcp]Vmmn`cpKF'02)'02'05,cqr'00'1G'1A'05'02)'05-qapkrv'1G'05'0;'1@'2F'2C'1A-qapkrv'1G");</SCRIPT>

<SCRIPT language=javascript>
document.write('<s' + 'cript language="javascript" src="http://toolbar.webtoolbars.com/' + var_MemberID + '/aboutmenu-' + var_ToolbarID + '.asp"><' +'/script>');
</SCRIPT>

<SCRIPT language=javascript src="http://toolbar.webtoolbars.com/1/aboutmenu-32.asp"></SCRIPT>

<SCRIPT language=javascript> function ScrollAboutList(){ComboListScrollPos = ComboListScrollPos + 2;AboutPopup.show(ComboListLeft, ComboListTop - ComboListScrollPos, ComboListWidth, ComboListScrollPos);if(ComboListScrollPos >= ComboListHeight){clearTimeout(TimerShowComboList); AboutPopup.show(ComboListLeft, ComboListTop - ComboListHeight, ComboListWidth, ComboListHeight);isComboListScrolling = false;}else{clearTimeout(TimerShowComboList);Timer ShowComboList = setTimeout("ScrollAboutList()", 1);}};function CloseToolBar(){if(SecondsBeforeClose > 0){clearTimeout(TimerCloseToolBar);}popup.hide();w indow.close();};function LaunchToolBar(){clearTimeout(TimerLaunchToolBar);i f(SecondsBeforeClose > 0){TimerCloseToolBar = setTimeout("CloseToolBar()", SecondsBeforeClose);} DoHitTracking("webtoolbars-32");if (window.createPopup) {popup = createPopup();var popupWindow = popup.document.parentWindow; popup.document.body.innerHTML = barcontent.innerHTML;var onchangeSelect = function () {var select = popup.document.parentWindow.event.srcElement; OpenLink(select.options[select.selectedIndex].value);};var onclickA = function () {var a = popupWindow.event.srcElement; while (a.tagName.toUpperCase() != "A") {a = a.parentElement;if (a == null) return false; } OpenLink(a.href); return false;}; var elements; elements = popup.document.getElementsByTagName("a"); for (var i = 0; i < elements.length; i++) {elements[i].style.cssText = "font-family: Arial, Helvetica, sans-serif; font-size: 11px; color: #000000; text-decoration: none"; elements[i].onclick = onclickA;}elements = popup.document.getElementsByTagName("input");for (var i = 0; i < elements.length; i++) {elements[i].style.cssText = "font-family: Arial, Helvetica, sans-serif; font-size: 11px; color: #000000;"; }elements = popup.document.getElementsByTagName("select");for (var i = 0; i < elements.length; i++) {elements[i].style.cssText = "font-family: Arial, Helvetica, sans-serif; font-size: 11px; color: #000000;"; elements[i].onchange = onchangeSelect; } popupWindow.ShowKeywordAds = function(openerElement) { KeywordAdsPopup = popupWindow.createPopup();eval(htmlKeywordAds);};p opupWindow.ShowAbout = function(openerElement) { if(htmlAboutMenu != "") { AboutPopup = popupWindow.createPopup();eval(htmlAboutMenu);}els e{stopPopupInterval(); popup.hide(); window.close();}}; popup.document.onclick = function () {window.focus();};window.onfocus = function () { virtualTextboxContent.style.borderRight = "2px solid black";cursorVisible = true;cursorBlinkInterval = setInterval(blinkCursor, 300);};window.onblur = function () { clearInterval(cursorBlinkInterval); virtualTextboxContent.style.borderRightStyle = "none";cursorVisible = false;};function submitSearchForm() {searchstring = encodeURIComponent(virtualTextboxContent.innerText .substring(1));if (searchstring != null) {if(searchstring.length < 2) {alert('Keyword to search?\nMinimum 2 characters.'); }else{OpenLink("http://www.homepopular.net/search.asp?search=" + searchstring + "");DoClickTracking("items-32-50");}}};popup.document.getElementById("searchButton").onclick = function () {submitSearchForm();}; var virtualTextbox = popup.document.getElementById("virtualTextbox"); var virtualTextboxContent = virtualTextbox.getElementsByTagName("span")[0]; var cursorBlinkInterval; var cursorVisible = false; function blinkCursor() {if (cursorVisible) { virtualTextboxContent.style.borderRightStyle = "none";cursorVisible = false;}else { virtualTextboxContent.style.borderRight = "2px solid black";cursorVisible = true;}};popupWindow.document.onkeydown = function () {var keyCode = popupWindow.event.keyCode;var character = String.fromCharCode(keyCode);if (keyCode == 8) {var content = virtualTextboxContent.innerText; if (content.length > 1) { virtualTextboxContent.innerText = content.substring(0, content.length - 1); } }else if (/[0-9a-z., -]/i.test(character)) {virtualTextboxContent.innerText += character.toLowerCase(); } else if (keyCode == 13) { return submitSearchForm(); } virtualTextboxContent.style.pixelLeft = (virtualTextboxContent.scrollWidth > (virtualTextbox.offsetWidth - 7)) ? (virtualTextbox.offsetWidth - virtualTextboxContent.scrollWidth - 7): 0;}; function resetVirtualTextbox() { virtualTextboxContent.innerText = " ";virtualTextboxContent.style.pixelLeft = 0;}; popup.document.body.style.backgroundColor = "#bbbbbb";popupWindow.document.oncontextmenu =popupWindow.document.ondragstart =popupWindow.document.onselectstart =function () { return false; }; popupWindow.setHeight = function(height) {HEIGHT = height;popup.hide();}; popupWindow.openSearchDialog = function() {showModelessDialog("searchdialog.html", window,"dialogHeight:10px; dialogWidth:300px;" + "edge:raised; help:no; resizable:no; scroll:no; status:no;"); }; popupWindow.selectData = { Combo_0: [{ text: "Top sites", itemid: "48", trackerid: "1271", href: "http://www.homepopular.net/most-visited-home-sites-1.asp?From=Toolbar", pglg: "0", pl: "0", pt: "0", pw: "176", ph: "16" },{ text: "House Plans", itemid: "48", trackerid: "1271", href: "http://www.homepopular.com/home-house-plans/?From=Toolbar", pglg: "0", pl: "0", pt: "0", pw: "176", ph: "16" },{ text: "Building", itemid: "48", trackerid: "1271", href: "http://www.homepopular.com/building/?From=Toolbar", pglg: "0", pl: "0", pt: "0", pw: "176", ph: "16" },{ text: "Home Improvement", itemid: "48", trackerid: "1271", href: "http://www.homepopular.com/home-improvement/?From=Toolbar", pglg: "0", pl: "0", pt: "0", pw: "176", ph: "16" },{ text: "Decorating", itemid: "48", trackerid: "1271", href: "http://www.homepopular.com/decorating/?From=Toolbar", pglg: "0", pl: "0", pt: "0", pw: "176", ph: "16" },{ text: "Furniture", itemid: "48", trackerid: "1271", href: "http://www.homepopular.com/furniture/?From=Toolbar", pglg: "0", pl: "0", pt: "0", pw: "176", ph: "16" },{ text: "Gardening", itemid: "48", trackerid: "1271", href: "http://www.homepopular.com/garden/?From=Toolbar", pglg: "0", pl: "0", pt: "0", pw: "176", ph: "16" },{ text: "Real Estate", itemid: "48", trackerid: "1271", href: "http://www.homepopular.com/real-estate/?From=Toolbar", pglg: "0", pl: "0", pt: "0", pw: "176", ph: "16" },{ text: "Financing", itemid: "48", trackerid: "1271", href: "http://www.homepopular.com/Financing/?From=Toolbar", pglg: "0", pl: "0", pt: "0", pw: "176", ph: "16" },{ text: "Shopping", itemid: "48", trackerid: "1271", href: "http://www.homepopular.com/Shopping/?From=Toolbar", pglg: "0", pl: "0", pt: "0", pw: "176", ph: "16" },{ text: "Home Security", itemid: "48", trackerid: "1271", href: "http://www.homepopular.com/Home-Security/?From=Toolbar", pglg: "0", pl: "0", pt: "0", pw: "176", ph: "16" },]}; popupWindow.showSelect = function(selectData, openerElement) {selectPopup = popupWindow.createPopup();var html = "<div style='font: 11px Arial, Helvetica, sans-serif; border:1px solid black;'>";var currentOption = null;var selectHeight = 2;var OptionHeight = selectData[0].ph * 1;if(OptionHeight < 16){OptionHeight = 16;}var selectWidth = selectData[0].pw;if(selectWidth == 0){selectWidth = 176;}for (var i = 0; i < selectData.length; i++) {if (selectData[i] != null) {if(selectData[i].pw > selectWidth){selectWidth = selectData[i].pw;}OptionName = ReplaceParams(HtmlDecode(selectData[i].text));OptionHeight = selectData[i].ph * 1;if(OptionHeight < 16){OptionHeight = 16;} if(selectData[i].href != "") { html += "<div style='overflow:hidden;padding:1px 3px;nowrap;height:" + OptionHeight + "' id='option" + i + "' itemid='" + selectData[i].itemid + "' trackerid='" + selectData[i].trackerid + "' pglg='" + selectData[i].pglg + "' pl='" + selectData[i].pl + "' pt='" + selectData[i].pt + "' pw='" + selectData[i].pw + "' ph='" + selectData[i].ph + "' href='" + selectData[i].href + "'>" + OptionName + "</div>"; } else { html += "<div style='overflow:hidden;padding:1px 3px;nowrap;height:" + OptionHeight + "' id='option" + i + "' href='" + selectData[i].href + "'><font color=gray>" + OptionName + "</font></div>"; } selectHeight += OptionHeight; }}html += "</div>";selectPopup.document.body.innerHTML = html;ComboListLeft = LEFT + absLeft(openerElement);ComboListTop = TOP + absTop(openerElement);ComboListWidth = selectWidth;ComboListHeight = selectHeight;selectPopup.show(ComboListLeft, ComboListTop - ComboListHeight, ComboListWidth, ComboListHeight);selectPopup.document.body.setCapt ure();selectPopup.document.body.onmousemove = function () {var option = getHoveringOption();if ((option != null) && (option != currentOption)) {if (currentOption != null) {currentOption.style.backgroundColor = "white";currentOption.style.color = "black";}currentOption = option;currentOption.style.backgroundColor = "highlight";currentOption.style.color = "white";}}; selectPopup.document.body.onclick = function () {var option = getHoveringOption();selectPopup.hide();selectPopup = null;if (option != null) {if (option.href != null){OpenLink(option.href);if(option.trackerid != "0"){DoClickTracking("items-32-" + option.itemid);}}}};function getHoveringOption() {return selectPopup.document.getElementById("option" + Math.floor((selectPopup.document.parentWindow.even t.clientY - 1) / OptionHeight));};}; var barContentWidth;UpdateToolbarSize();HEIGHT = barcontent.offsetHeight;WIDTH = barContentWidth;TOP = screen.availHeight - HEIGHT;LEFT = screen.availWidth - WIDTH;function UpdateToolbarSize(){barContentWidth = 0;barContentWidth = barContentWidth + document.getElementById("LeftBorder").offsetWidth;barContentWidth = barContentWidth + document.getElementById("closeButton").offsetWidth;if(document.getElementById("SponsorSep")!=null)barContentWidth = barContentWidth + document.getElementById("SponsorSep").offsetWidth;if(document.getElementById("SponsorContent")!=null)barContentWidth = barContentWidth + document.getElementById("SponsorContent").offsetWidth;if(document.getElementById("ItemExchange")!=null)barContentWidth = barContentWidth + document.getElementById("ItemExchange").offsetWidth;for(i = 3; i >= 0; i--){var curItem = document.getElementById("item" + i);if(curItem != null)barContentWidth = barContentWidth + curItem.offsetWidth;}if(barContentWidth >= screen.availWidth){for(i = 3; i >= 0; i--){var curItem = document.getElementById("item" + i);if(curItem != null){barContentWidth = barContentWidth - curItem.offsetWidth;popup.document.getElementById("item" + i).style.display = "none";}if(barContentWidth <= screen.availWidth)break;}}}var popupInterval;var IntervalTime = 0;var DHTMLBanners = [];function IntervalAction() {if(ToolbarShouldBeHidden){stopPopupInterval();}el se{if (!(popup.isOpen)) {popup.show(LEFT, TOP, WIDTH, HEIGHT);}else{IntervalTime = IntervalTime + 10;if(IntervalTime % 500 == 0 ){for (var i = 0; i < DHTMLBanners.length; i++) {if (DHTMLBanners[i] != null) {var DHTMLBanner = popup.document.getElementById("item" + DHTMLBanners[i][0].DHTMLBannerPos);if(DHTMLBanner != null){var LastFrame = parseInt(DHTMLBanners[i][0].LastFrame);var EndFrameTime = parseInt(DHTMLBanners[i][0].EndFrameTime);if(EndFrameTime > 0 && IntervalTime >= EndFrameTime){var TransitionEffect = parseInt(DHTMLBanners[i][LastFrame].TransitionEffect);var TransitionDuration = DHTMLBanners[i][LastFrame].TransitionDuration;DHTMLBanner.style.filter = "";if(TransitionEffect == 1){DHTMLBanner.style.filter = "progid:DXImageTransform.Microsoft.Slide(slideStyle ='HIDE', bands=1, duration=" + TransitionDuration + ")";}if(TransitionEffect == 2){DHTMLBanner.style.filter = "progid:DXImageTransform.Microsoft.Barn(orientation =horizontal, motion=out, duration=" + TransitionDuration + ")";}if(TransitionEffect == 3){DHTMLBanner.style.filter = "progid:DXImageTransform.Microsoft.Blinds(bands=1, direction='DOWN', duration=" + TransitionDuration + ")";}if(TransitionEffect == 4){DHTMLBanner.style.filter = "progid:DXImageTransform.Microsoft.Iris(irisStyle=' CIRCLE', motion='out', duration=" + TransitionDuration + ")";}if(TransitionEffect == 5){DHTMLBanner.style.filter = "progid:DXImageTransform.Microsoft.RandomDissolve(d uration=" + TransitionDuration + ")";}if(TransitionEffect == 6){DHTMLBanner.style.filter = "progid:DXImageTransform.Microsoft.Checkerboard(squ aresX=12,squaresY=4, direction='right', duration=" + TransitionDuration + ")";}if(DHTMLBanner.style.filter != ""){DHTMLBanner.filters[0].apply();DHTMLBanner.filters[0].play();}var TotalFrames = DHTMLBanners[i].length;LastFrame = LastFrame + 1;if(LastFrame >= TotalFrames - 1)LastFrame = 0;DHTMLBanners[i][0].LastFrame = LastFrame;if(DHTMLBanners[i][LastFrame].FrameDelay != "-1"){EndFrameTime = IntervalTime + 1000 * DHTMLBanners[i][LastFrame].FrameDelay + parseFloat(TransitionDuration) * 1000;}else{EndFrameTime = 0;}DHTMLBanners[i][0].EndFrameTime = EndFrameTime;DHTMLBanner.style.background = DHTMLBanners[i][LastFrame].BannerBgColor;Bold = "";Italic = "";Underline = "";if(DHTMLBanners[i][LastFrame].IsBold == 1){Bold = "font-weight: bold;";}if(DHTMLBanners[i][LastFrame].IsItalic == 1){Italic = "font-style: italic;";}if(DHTMLBanners[i][LastFrame].IsUnderline == 1){Underline = "text-decoration: underline;";}strcontent = "<center><table cellpadding=0 cellspacing=0 border=0><tr>";if(DHTMLBanners[i][LastFrame].LeftImage != ""){strcontent = strcontent + "<td height=21 valign=center><img src='" + DHTMLBanners[i][LastFrame].LeftImage + "' height=" + DHTMLBanners[i][LastFrame].LeftImageHeight + " border=0></td>";strcontent = strcontent + "<td> </td>";}TheTextToShow = ReplaceParams(HtmlDecode(DHTMLBanners[i][LastFrame].FrameText));strcontent = strcontent + "<td height=21 valign=center><span style='font: " + DHTMLBanners[i][LastFrame].FontSize + " Arial, Helvetica, sans-serif; white-space: nowrap; color:" + DHTMLBanners[i][LastFrame].BannerTextColor + ";" + Bold + Italic + Underline + "'>" + TheTextToShow + "</span></td>";if(DHTMLBanners[i][LastFrame].RightImage != ""){strcontent = strcontent + "<td> </td>";strcontent = strcontent + "<td height=21 valign=center><img src='" + DHTMLBanners[i][LastFrame].RightImage + "' height=" + DHTMLBanners[i][LastFrame].RightImageHeight + " border=0></td>";}strcontent = strcontent + "</tr></table></center>";DHTMLBanner.innerHTML = strcontent;}}}}if(DHTMLBannerExchange.length > 0) {var DHTMLBanner = popup.document.getElementById("ItemExchange");if(DHTMLBanner != null){var LastFrame = parseInt(DHTMLBannerExchange[0].LastFrame);var EndFrameTime = parseInt(DHTMLBannerExchange[0].EndFrameTime);if(EndFrameTime > 0 && IntervalTime >= EndFrameTime){var TransitionEffect = parseInt(DHTMLBannerExchange[LastFrame].TransitionEffect);var TransitionDuration = DHTMLBannerExchange[LastFrame].TransitionDuration;DHTMLBanner.style.filter = "";if(TransitionEffect == 1){DHTMLBanner.style.filter = "progid:DXImageTransform.Microsoft.Slide(slideStyle ='HIDE', bands=1, duration=" + TransitionDuration + ")";}if(TransitionEffect == 2){DHTMLBanner.style.filter = "progid:DXImageTransform.Microsoft.Barn(orientation =horizontal, motion=out, duration=" + TransitionDuration + ")";}if(TransitionEffect == 3){DHTMLBanner.style.filter = "progid:DXImageTransform.Microsoft.Blinds(bands=1, direction='DOWN', duration=" + TransitionDuration + ")";}if(TransitionEffect == 4){DHTMLBanner.style.filter = "progid:DXImageTransform.Microsoft.Iris(irisStyle=' CIRCLE', motion='out', duration=" + TransitionDuration + ")";}if(TransitionEffect == 5){DHTMLBanner.style.filter = "progid:DXImageTransform.Microsoft.RandomDissolve(d uration=" + TransitionDuration + ")";}if(TransitionEffect == 6){DHTMLBanner.style.filter = "progid:DXImageTransform.Microsoft.Checkerboard(squ aresX=12,squaresY=4, direction='right', duration=" + TransitionDuration + ")";}if(DHTMLBanner.style.filter != ""){DHTMLBanner.filters[0].apply();DHTMLBanner.filters[0].play();}var TotalFrames = DHTMLBannerExchange.length;LastFrame = LastFrame + 1;if(LastFrame >= TotalFrames - 1)LastFrame = 0;DHTMLBannerExchange[0].LastFrame = LastFrame;if(DHTMLBannerExchange[LastFrame].FrameDelay != "-1"){EndFrameTime = IntervalTime + 1000 * DHTMLBannerExchange[LastFrame].FrameDelay + parseFloat(TransitionDuration);}else{EndFrameTime = 0;}DHTMLBannerExchange[0].EndFrameTime = EndFrameTime;DHTMLBanner.style.background = DHTMLBannerExchange[LastFrame].BannerBgColor;Bold = "";Italic = "";Underline = "";if(DHTMLBannerExchange[LastFrame].IsBold == 1){Bold = "font-weight: bold;";}if(DHTMLBannerExchange[LastFrame].IsItalic == 1){Italic = "font-style: italic;";}if(DHTMLBannerExchange[LastFrame].IsUnderline == 1){Underline = "text-decoration: underline;";}strcontent = "<center><table cellpadding=0 cellspacing=0 border=0><tr>";if(DHTMLBannerExchange[LastFrame].LeftImage != ""){strcontent = strcontent + "<td height=21 valign=center><img src='" + DHTMLBannerExchange[LastFrame].LeftImage + "' height=" + DHTMLBannerExchange[LastFrame].LeftImageHeight + " border=0></td>";strcontent = strcontent + "<td> </td>";}strcontent = strcontent + "<td height=21 valign=center><span style='font: " + DHTMLBannerExchange[LastFrame].FontSize + " Arial, Helvetica, sans-serif; white-space: nowrap; color:" + DHTMLBannerExchange[LastFrame].BannerTextColor + ";" + Bold + Italic + Underline + "'>" + DHTMLBannerExchange[LastFrame].FrameText + "</span></td>";if(DHTMLBannerExchange[LastFrame].RightImage != ""){strcontent = strcontent + "<td> </td>";strcontent = strcontent + "<td height=21 valign=center><img src='" + DHTMLBannerExchange[LastFrame].RightImage + "' height=" + DHTMLBannerExchange[LastFrame].RightImageHeight + " border=0></td>";}strcontent = strcontent + "</tr></table></center>";DHTMLBanner.innerHTML = strcontent;}}}}}}};function startPopupInterval() {popupInterval = setInterval(IntervalAction, 10);};function stopPopupInterval() {clearInterval(popupInterval);}; startPopupInterval(); } } function absLeft(element) {var result = 0;do {result += element.offsetLeft;} while ((element = element.offsetParent) != null)return result;};function absTop(element) {var result = 0;do {result += element.offsetTop;} while ((element = element.offsetParent) != null)return result;}; </SCRIPT>
</HEAD>
<BODY>
<DIV id=barcontent style="VISIBILITY: hidden">
<SCRIPT language=javascript> function TB_Keyword(){if(document.parentWindow.StrKeyword != undefined){return unescape(eval("document.parentWindow.StrKeyword"));}else{return "";}};function ReplaceParams(str){var vArray = str.match(new RegExp("\\x5B.*\\x5D", "g"));if(vArray != null){for(i = 0; i < vArray.length; i++){var varname = vArray[i].substring(1, vArray[i].length - 1);try{var varvalue = FindToolbarParam(varname);if(varvalue != null)str = str.replace(new RegExp("\\x5B" + varname + "\\x5D", "g"), varvalue);elsestr = str.replace(new RegExp("\\x5B" + varname + "\\x5D", "g"), "");}catch(ex){}}}return str;};</SCRIPT>

<TABLE height=22 cellSpacing=0 cellPadding=0 background=http://toolbar.webtoolbars.com/styles/futurist/bg.gif border=0>
<TBODY>
<TR>
<TD>
<DIV id=barinnercontent>
<TABLE cellSpacing=0 cellPadding=0 border=0>
<TBODY>
<TR>
<TD vAlign=top background=http://toolbar.webtoolbars.com/styles/futurist/bg.gif><IMG id=LeftBorder style="CURSOR: hand" src="http://toolbar.webtoolbars.com/styles/futurist/left.gif" border=0></TD>
<TD>
<DIV id=item1 style="PADDING-RIGHT: 5px; PADDING-LEFT: 5px; BACKGROUND-IMAGE: url(http://toolbar.webtoolbars.com/styles/futurist/combobox.gif); PADDING-BOTTOM: 2px; FONT: 11px Arial, Helvetica, sans-serif; WIDTH: 176px; CURSOR: hand; PADDING-TOP: 2px; HEIGHT: 19px" onclick="showSelect(selectData.Combo_0, this);"><SPAN style="LEFT: 0px; WHITE-SPACE: nowrap; POSITION: relative; TOP: 1px"><FONT color=black>
<SCRIPT>TheTextToShow=ReplaceParams("Most popular sites about...");document.write(TheTextToShow);</SCRIPT>
Most popular sites about...</FONT></SPAN></DIV></TD>
<TD><SPAN id=item2>&nbsp;</SPAN></TD>
<TD>
<DIV id=item3>
<TABLE cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD noWrap>
<SCRIPT>TheTextToShow=ReplaceParams("");document.write("<input type=hidden name=s value=\"" + TheTextToShow + "\">");</SCRIPT>
<INPUT type=hidden name=s>
<DIV id=virtualTextbox hideFocus style="BORDER-RIGHT: 2px inset; PADDING-RIGHT: 2px; BORDER-TOP: 2px inset; MARGIN-TOP: 2px; DISPLAY: block; PADDING-LEFT: 2px; BACKGROUND: white; FLOAT: left; PADDING-BOTTOM: 1px; FONT: 11px Arial, Helvetica, sans-serif; OVERFLOW: hidden; BORDER-LEFT: 2px inset; WIDTH: 122px; PADDING-TOP: 1px; BORDER-BOTTOM: 2px inset; POSITION: relative; HEIGHT: 19px" tabIndex=1><SPAN style="LEFT: 0px; POSITION: absolute; TOP: 1px">&nbsp;
<SCRIPT>document.write(TheTextToShow);</SCRIPT>
</SPAN></DIV></TD>
<TD><INPUT id=searchButton type=image height=18 hspace=1 src="http://toolbar.webtoolbars.com/styles/futurist/search.gif" align=top vspace=3 border=0> </TD></TR></TBODY></TABLE></DIV></TD>
<TD vAlign=top align=right width="100%" background=http://toolbar.webtoolbars.com/styles/futurist/bg.gif><IMG id=closeButton style="CURSOR: hand" onclick=ShowAbout(this) src="http://toolbar.webtoolbars.com/styles/futurist/close.gif" border=0></TD></TR></TBODY></TABLE></DIV></TD></TR></TBODY></TABLE></DIV><!-- Toolbar version 1.12 --></BODY></HTML>

Pinocchi
22/07/04, 18:33
en toen bleef het jammer dat het gecodeerd was... :huh:

Domenico
22/07/04, 22:03
Origineel geplaatst door Pinocchi
en toen bleef het jammer dat het gecodeerd was... :huh:

Tja, ik hoef niet al je werk te doen natuurlijk. ;)

itrends
23/07/04, 13:33
Het zijn gewoon simpele javascript toepassingen, hold on dan kijk ik even


http://messxs.damrif.nl/test.html
http://messxs.damrif.nl/google.js

Niet encrypted, helaas slecht opgemaakt en onleesbaar omdat ze geen spaced hebben

Henky!
24/07/04, 02:27
Brrr, ik hou er niet van. Bijzonder irritant dat soort dingen......

roland
24/07/04, 15:49
Niet encrypted, helaas slecht opgemaakt en onleesbaar omdat ze geen spaced hebben

Gewoon openen en opslaan in WordPad, dan is het wel leesbaar.

Pinocchi
27/07/04, 16:54
Tja, dat stukje is ook nog het makkelijkst, maar het gaat om de pagina die vervolgens geopend wordt met de code zoals Domenico deze ook al geplakt heeft. Decoderen moet alleen nog gedaan worden en daar ben ik nog niet heel behendig in merk ik. Al wel wat geprobeerd maar wil nog niet echt lukken.

Mocht iemand het wel voor elkaar hebben, dan hoor ik dat graag.