PageRenderTime 48ms CodeModel.GetById 15ms RepoModel.GetById 0ms app.codeStats 1ms

/projecte eclipse/TI/data/2012-documentos/27/2012-27-191.html

https://gitlab.com/bernagg/TI
HTML | 1791 lines | 991 code | 798 blank | 2 comment | 0 complexity | 799a5dcce897eb541b2d5c8b1de812a5 MD5 | raw file
  1. <html>
  2. <head>
  3. <title>Social-media Job Trends | Indeed.com</title>
  4. <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
  5. <meta name="description" content="Research Social-media job trends and the demand for Social-media jobs at Indeed.com. Search all Social-media jobs, and get Social-media job alerts by email."/>
  6. <meta name="keywords" content="Social-media job trends job search graph Social-media time jobs most popular Social-media jobs research career employment"/>
  7. <link rel="canonical" href="/jobtrends?q=Social-media" />
  8. <link rel="stylesheet" type="text/css" href="/s/7a273aa/global.css" />
  9. <script type="text/javascript">
  10. /* --------------
  11. DOM FUNCTIONS
  12. ----------------- */
  13. function addEvent( element, event, callback, capture ) {
  14. if ( element.attachEvent ) {
  15. element.attachEvent( 'on' + event, callback );
  16. }
  17. else if ( element.addEventListener ) {
  18. element.addEventListener( event, callback, capture );
  19. }
  20. else {
  21. element['on' + event] = callback;
  22. }
  23. return element;
  24. }
  25. function removeEvent( element, event, callback, capture ) {
  26. if ( element.detachEvent ) {
  27. element.detachEvent( 'on' + event, callback );
  28. }
  29. else if ( element.removeEventListener ) {
  30. element.removeEventListener( event, callback, capture );
  31. }
  32. else {
  33. element['on' + event] = null;
  34. }
  35. return element;
  36. }
  37. // className functions
  38. // Dean Edwards 2004.0.24
  39. function addClass(element, className) {
  40. if (!hasClass(element, className)) {
  41. if (element.className) element.className += " " + className;
  42. else element.className = className;
  43. }
  44. };
  45. function removeClass(element, className) {
  46. var regexp = new RegExp("(^|\\s)" + className + "(\\s|$)");
  47. element.className = element.className.replace(regexp, "$2");
  48. };
  49. function hasClass(element, className) {
  50. var regexp = new RegExp("(^|\\s)" + className + "(\\s|$)");
  51. return regexp.test(element.className);
  52. };
  53. function getElementsByTagNameAndClassName( tagName, className, element ) {
  54. for ( var i = 0, matches = [], targets = element.getElementsByTagName( tagName ); i < targets.length; i++ ) {
  55. if ( hasClass( targets[i], className ) ) {
  56. matches[matches.length] = targets[i];
  57. }
  58. }
  59. return matches;
  60. }
  61. function removeAllChildNodes( element ) {
  62. for ( var i = ( element.childNodes.length - 1 ); i >=0; i-- ) {
  63. element.removeChild( element.childNodes[i] );
  64. }
  65. }
  66. function gbid(id) { return document.getElementById(id); }
  67. /* --------------
  68. COMMUNICATION FUNCTIONS
  69. ----------------- */
  70. function createRequest() {
  71. var xmlhttp = false;
  72. try {
  73. xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
  74. } catch (e) {
  75. try {
  76. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  77. } catch (E) {
  78. // do nothing...
  79. }
  80. }
  81. if (!xmlhttp && typeof XMLHttpRequest != 'undefined') {
  82. try {
  83. xmlhttp = new XMLHttpRequest();
  84. } catch (e) {
  85. // do nothing...
  86. }
  87. }
  88. return xmlhttp;
  89. }
  90. function sendRequest(uri, method, callback) {
  91. var req = createRequest();
  92. if ( !req ) { return; }
  93. if (!method) method = 'GET';
  94. if ( typeof( callback ) == 'function' ) { req.onreadystatechange = function() { callback(req); }; }
  95. req.open(method.toUpperCase(), uri, true);
  96. req.send(null);
  97. }
  98. function hasAjax() {
  99. if (!createRequest()) return false;
  100. return true;
  101. }
  102. function hit(url) { (new Image()).src=url; }
  103. function rpc(url, setd) { if (document.images) (new Image()).src=url+'&zr='+rand(); }
  104. function redirect(url,s) { if (!s) s=''; return '/url?q='+urlencode('http'+s+'://'+url); }
  105. function logError( msg, url, line ) {
  106. var href = '/rpc/log?a=jserr&msg=' + urlencode( msg ) + '&url=' + urlencode( url ) + '&line=' + line;
  107. if (Image) { (new Image()).src = href; }
  108. }
  109. logError.errorCount = 0;
  110. window.onerror = function( msg, url, line ) { if ( logError.errorCount == 0 ) { logError( msg, url, line ); } logError.errorCount++; return false; };
  111. /* --------------
  112. ENCODING/DECODING FUNCTIONS
  113. ----------------- */
  114. var urlencode = window.encodeURIComponent ?
  115. function ( str ) { return window.encodeURIComponent(str).replace(/%20/g,'+') } :
  116. function ( str ) { return escape(str).replace(/\+/g,'%2B').replace(/\//g,'%2F').replace(/%20/g,'+');
  117. }
  118. function urlUnescape(s) {
  119. s = s.replace(/\+/g," ");
  120. return unescape(s);
  121. }
  122. function urlEscape(s) {
  123. s = escape(s);
  124. s = s.replace(/\+/g,"%2B");
  125. s = s.replace(/\//g,"%2F");
  126. return s.replace(new RegExp("%20","g"),"+");
  127. }
  128. function rand() { return Math.floor(Math.random()*2147483647); }
  129. /* --------------
  130. WINDOW FUNCTIONS
  131. ----------------- */
  132. function sts(w) { window.status = w; return true; }
  133. function _st(el) { if (el) window.status = String(el.innerHTML); }
  134. function cls() { window.status = ''; }
  135. /* --------------
  136. COOKIE FUNCTIONS
  137. ----------------- */
  138. function getc(a) { var ck = String(document.cookie); var pos = ck.indexOf(a+'='); if (pos == -1) return ''; var d = ck.indexOf(';', pos); return ck.substring(pos + a.length + 1, d == -1 ? ck.length : d); }
  139. function _getck(a){ return getc(a); }
  140. function setck(ckname, id, st) {
  141. if (!ckname) return;
  142. var ck = getc(ckname);
  143. var val = ':' + id;
  144. if (ck.indexOf(val) < 0) {
  145. ck += val + st;
  146. } else {
  147. var pattern = new RegExp(val+'[SR]','gi');
  148. ck = ck.replace(pattern,'');
  149. }
  150. document.cookie = ckname+'='+ck+'; path=/';
  151. }
  152. function getCookie(name) { return unescape(_getck(name)); }
  153. function setCookie(name, value, expires) {
  154. var cs = name + '=' + escape(value) + '; path=/' + ((expires) ? '; expires=' + expires.toGMTString() : '');
  155. document.cookie = cs;
  156. }
  157. /* --------------
  158. STRING FORMATING FUNCTIONS
  159. ----------------- */
  160. function dehyphenate(s) {
  161. return new String( s ).split('-').join(' ');
  162. }
  163. function toTitleCase() {
  164. if ( typeof arguments[0] == 'string' ) {
  165. var return_value = arguments[0].split( ' ' );
  166. for ( var i = 0; i < return_value.length; i++ ) {
  167. return_value[i] = return_value[i].substring(0,1).toUpperCase() + return_value[i].substring(1).toLowerCase();
  168. if ( ( return_value[i].match(/^(\.NET|ABAP|ACS|ADZ|AJAX|ASP|CAD|CATIA|CICS|CDL|CEO|CFO|CIO|COO|CNA|CNC|CPA|CPS|CSS|CTO|DB|DBA|EMT|ESL|ETL|GIS|GUI|HHA|HR|HRIS|HVAC|HTML|IBM|IR|IT|J2EE|LAN|LPN|LVN|MRI|OA|OT|PA|PACS|PBX|PC|PHP|PL|PM|PT|QA|QC|RN|SAN|SAP|SAS|SQL|VP|VB\.NET|WSNA)(\,)?$/i) != null ) || return_value[i].length <= 2 ) {
  169. return_value[i] = return_value[i].toUpperCase();
  170. }
  171. if ( return_value[i].match(/^(in|at|of|the|a)$/i) != null ) {
  172. return_value[i] = return_value[i].toLowerCase();
  173. }
  174. if ( return_value[i].match(/^(Ph\.?D\.?)$/i) != null ) {
  175. return_value[i] = 'Ph.D.';
  176. }
  177. }
  178. // Ensure the first word is caplitalized, even if it is a,of,the, etc.
  179. return_value[0] = return_value[0].substring(0,1).toUpperCase() + return_value[0].substring(1);
  180. return return_value.join( ' ' );
  181. }
  182. }
  183. /* other version....
  184. function toTitleCase(words) {
  185. var result = new Array();
  186. for (var i = 0; i < words.length; i++) {
  187. if ( words[i].search(/^CPA|SQL|PM|PT|QA|RN$/i) == -1 ) {
  188. var first = words[i].substring(0,1);
  189. var rest = words[i].substring(1);
  190. result[i] = first.toUpperCase() + rest.toLowerCase();
  191. }
  192. else { result[i] = words[i].toUpperCase(); }
  193. }
  194. return result.join(" ");
  195. } */
  196. /* --------------
  197. OBJECTS
  198. ----------------- */
  199. function WindowGeometry( target_window ) {
  200. /* Based on example 14.2 in "JavaScript: The Definitive Guide, Fifth Edition" by David Flanagan (ISBN: 0-596-10199-6) */
  201. if ( target_window.screenLeft != undefined ) { // IE and others
  202. this.getWindowX = function() { return target_window.screenLeft; };
  203. this.getWindowY = function() { return target_window.screenTop; };
  204. }
  205. else if ( target_window.screenX != undefined ) { // Firefox and others
  206. this.getWindowX = function() { return target_window.screenX; };
  207. this.getWindowY = function() { return target_window.screenY; };
  208. }
  209. if ( target_window.innerWidth != undefined ) { // All browsers but IE
  210. this.getViewportWidth = function() { return target_window.innerWidth; };
  211. this.getViewportHeight = function() { return target_window.innerHeight; };
  212. this.getHorizontalScroll = function() { return target_window.pageXOffset; };
  213. this.getVerticalScroll = function() { return target_window.pageYOffset; };
  214. }
  215. else if ( document.documentElement && ( document.documentElement.clientWidth != undefined ) ) {
  216. // These functions are for IE6 when there is a DOCTYPE
  217. this.getViewportWidth = function() { return target_window.document.documentElement.clientWidth; };
  218. this.getViewportHeight = function() { return target_window.document.documentElement.clientHeight; };
  219. this.getHorizontalScroll = function() { return target_window.document.documentElement.scrollLeft; };
  220. this.getVerticalScroll = function() { return target_window.document.documentElement.scrollTop; };
  221. }
  222. else if ( document.body.clientWidth ) {
  223. // These are for IE4, IE5, and IE6 without a DOCTYPE
  224. this.getViewportWidth = function() { return target_window.document.body.clientWidth; };
  225. this.getViewportHeight = function() { return target_window.document.body.clientHeight; };
  226. this.getHorizontalScroll = function() { return target_window.document.body.scrollLeft; };
  227. this.getVerticalScroll = function() { return target_window.document.body.scrollTop; };
  228. }
  229. }
  230. /* ----- Begin ForumRequest Object ---- */
  231. function ForumRequest() {
  232. this.request = { jobtitles: [], companies: [], querymatch: '', user_id: '' };
  233. this._request = { jobtitles: [], companies: [] };
  234. this.results = {};
  235. }
  236. ForumRequest.prototype.encodeForumsMultivalueArgument = function( args ) {
  237. var arg_string = '';
  238. for ( var i = 0; i < args.length; i++) {
  239. arg_string += urlencode( args[i]) + ( i < args.length-1 ? "|" : "" );
  240. }
  241. return urlencode(arg_string); // encode twice to effectively quote "|" in values
  242. }
  243. ForumRequest.prototype.addJobtitle = function( title ) {
  244. if ( this._request.jobtitles[title] == undefined ) {
  245. this.request.jobtitles[this.request.jobtitles.length] = title;
  246. this._request.jobtitles[title] = (this.request.jobtitles.length - 1);
  247. }
  248. }
  249. ForumRequest.prototype.getForumForJobtitle = function( title ) {
  250. if ( this.results.jobtitles != undefined ) {
  251. var forum = this.results.jobtitles[this._request.jobtitles[title]];
  252. if ( forum.id != '-' ) {
  253. return forum;
  254. }
  255. }
  256. return null;
  257. }
  258. ForumRequest.prototype.addJobtitles = function( titles ) {
  259. for ( var i = 0; i < titles.length; i++ ) {
  260. this.addJobtitle( titles[i] );
  261. }
  262. }
  263. ForumRequest.prototype.addCompany = function( name ) {
  264. if ( this._request.companies[name] == undefined ) {
  265. this.request.companies[this.request.companies.length] = name;
  266. this._request.companies[name] = (this.request.companies.length - 1);
  267. }
  268. }
  269. ForumRequest.prototype.addCompanies = function( names ) {
  270. for ( var i = 0; i < names.length; i++ ) {
  271. this.addCompany( names[i] );
  272. }
  273. }
  274. ForumRequest.prototype.getForumForCompany = function( name ) {
  275. if ( this.results.companies != undefined ) {
  276. var forum = this.results.companies[this._request.companies[name]];
  277. if ( forum.id != '-' ) {
  278. return forum;
  279. }
  280. }
  281. return null;
  282. }
  283. ForumRequest.prototype.addQuery = function( query ) {
  284. this.request.querymatch = query;
  285. }
  286. ForumRequest.prototype.addUserId = function( user_id ) {
  287. this.request.user_id = user_id;
  288. }
  289. ForumRequest.prototype.getForums = function( callback ) {
  290. var self = this;
  291. var query_string = [];
  292. query_string.push( 'jobtitles=' + this.encodeForumsMultivalueArgument( this.request.jobtitles ) );
  293. query_string.push( 'companies=' + this.encodeForumsMultivalueArgument( this.request.companies ) );
  294. query_string.push( 'query=' + this.request.querymatch );
  295. query_string.push( 'userid=' + this.request.user_id );
  296. query_string.push( 'ts=' + new Date().getTime() );
  297. var uri = '/forum/service?all=1&action=get-forum-names&' + query_string.join( '&' );
  298. sendRequest( uri, 'GET', function( result ) {
  299. var request_obj = self;
  300. if ( result.readyState != 4 || result.responseText == '' ) { return; }
  301. eval( 'request_obj.results = ' + result.responseText + ';');
  302. if ( callback ) { callback( request_obj.results ); }
  303. }
  304. );
  305. }
  306. /* --------------
  307. GLOBAL IMPLEMENTATION
  308. ----------------- */
  309. function displayNewForumComments( notices, user_id ) {
  310. if ( notices == null || !notices.length ) { return; }
  311. var notice_table_id = 'recent_comments';
  312. var label_text_template = 'New Comments (#)';
  313. var total_num_comments = 0;
  314. function setLabelText( label_text ) {
  315. control.innerHTML = label_text;
  316. }
  317. var control = document.createElement( 'a' );
  318. control.href = '#' + notice_table_id;
  319. control.id = 'new_comment_label';
  320. setLabelText( 'Loading...' );
  321. var user_actions = document.getElementById( 'user_actions' );
  322. var seperator = document.createTextNode( ' - ' );
  323. if ( user_actions ) {
  324. user_actions.appendChild( seperator );
  325. user_actions.appendChild( control );
  326. }
  327. var popup_label = PopupLabel( control );
  328. var table = document.createElement('table');
  329. table.id = notice_table_id;
  330. table.style.display = 'none';
  331. var tbody = document.createElement( 'tbody' );
  332. table.appendChild( tbody );
  333. function setNumComments( num_comments ) {
  334. setLabelText( label_text_template.replace( /\#/, num_comments ) );
  335. }
  336. function makeDefaultRow( msg ) {
  337. var row = document.createElement('tr');
  338. var default_td = document.createElement('td');
  339. default_td.className = 'col_a';
  340. default_td.appendChild( document.createTextNode( msg ) );
  341. row.appendChild( default_td );
  342. return row;
  343. }
  344. function makeRow( notice ) {
  345. total_num_comments += notice.comments;
  346. var hide_url = notice.link + '?hide=' + user_id;
  347. function hideNotification() {
  348. total_num_comments -= notice.comments;
  349. setNumComments( total_num_comments );
  350. tbody.removeChild( row );
  351. if ( tbody.getElementsByTagName('tr').length == 0 ) {
  352. seperator.parentNode.removeChild( seperator );
  353. control.parentNode.removeChild( control );
  354. if ( popup_label) { popup_label.close(); }
  355. }
  356. sendRequest( hide_url, 'GET', function() {} );
  357. }
  358. var row = document.createElement('tr');
  359. var title_td = document.createElement('td');
  360. title_td.className = 'col_a';
  361. var forum_link = document.createElement('a');
  362. forum_link.href = hide_url;
  363. forum_link.appendChild( document.createTextNode( notice.subject ) );
  364. title_td.appendChild( forum_link );
  365. title_td.appendChild( document.createTextNode( ' ' ) );
  366. var amount = document.createElement('span');
  367. amount.className = 'amount';
  368. amount.appendChild( document.createTextNode( '(' + notice.comments + ')' ) );
  369. title_td.appendChild( amount );
  370. setNumComments( total_num_comments );
  371. var actions_td = document.createElement('td');
  372. actions_td.className = 'col_b';
  373. var hide_action = document.createElement('a');
  374. hide_action.href = '#';
  375. hide_action.title = 'Stop showing notifications when this forum is updated.';
  376. hide_action.appendChild( document.createTextNode('Hide') );
  377. hide_action.onclick = hideNotification;
  378. actions_td.appendChild( hide_action );
  379. row.appendChild( title_td );
  380. row.appendChild( actions_td );
  381. return row;
  382. }
  383. // this actually populates the table...
  384. for ( var i = 0; i < notices.length; i ++ ) {
  385. tbody.appendChild( makeRow( notices[i] ) );
  386. }
  387. setNumComments( total_num_comments );
  388. control.parentNode.insertBefore( table, control.nextSibling );
  389. return;
  390. }
  391. /* --- New Comments --- */
  392. function hideForumTopic( url, element, num_comments ) {
  393. sendRequest( url, 'GET', function( result ) {
  394. if ( result.readyState != 4 || result.responseText == '' ) { return; }
  395. updateTotalNumComments( getTotalNumComments() - num_comments );
  396. if ( element && element.parentNode != null ) {
  397. element.parentNode.removeChild( element );
  398. if ( getNumCommentItems() == 0 ) {
  399. new_comment_label.close();
  400. var comments_label = getNumCommentsLabel();
  401. comments_label.style.display = 'none';
  402. comments_label.previousSibling.parentNode.removeChild( comments_label.previousSibling );
  403. }
  404. }
  405. } );
  406. }
  407. function getNumCommentItems() {
  408. var recent_comments = document.getElementById('recent_comments');
  409. if ( recent_comments ) {
  410. return recent_comments.getElementsByTagName('tr').length;
  411. }
  412. return 0;
  413. }
  414. function getNumCommentsLabel() {
  415. return document.getElementById('new_comment_label');
  416. }
  417. function getTotalNumComments() {
  418. var label = getNumCommentsLabel();
  419. var current_total = label.innerHTML.match(/[0-9]+/);
  420. return current_total[0];
  421. }
  422. function updateTotalNumComments( new_total ) {
  423. var comments_label = getNumCommentsLabel();
  424. comments_label.innerHTML = comments_label.innerHTML.replace( getTotalNumComments(), new_total );
  425. }
  426. </script>
  427. <script type="text/javascript">
  428. function gbid(id) { return document.getElementById(id); }
  429. function simpleToggle(label, target, actions) {
  430. if (target.style.display == 'none') {
  431. target.style.display = '';
  432. label.className = 'open';
  433. if (actions && actions.onopen) { actions.onopen(); }
  434. } else {
  435. target.style.display = 'none';
  436. label.className = 'closed';
  437. if (actions && actions.onclose) { actions.onclose(); }
  438. }
  439. }
  440. function getFormValuesAsObject(form) {
  441. var args = {};
  442. for (var i = 0; i < form.elements.length; i++) {
  443. var input = form.elements[i];
  444. if (input.disabled) { continue; }
  445. switch (input.type) {
  446. case 'text':
  447. case 'hidden':
  448. case 'password':
  449. case 'textarea':
  450. case 'submit':
  451. case 'file':
  452. args[input.name] = trim( input.value );
  453. break;
  454. case 'select-one':
  455. args[input.name] = input.options[input.selectedIndex].value;
  456. break;
  457. case 'select-multiple':
  458. for (var j = 0; j < input.options.length; j++) {
  459. if (input.options[j].selected) {
  460. args[input.name] = input.options[j].value;
  461. }
  462. }
  463. break;
  464. case 'radio':
  465. case 'checkbox':
  466. if ( input.checked ) {
  467. args[input.name] = input.value;
  468. }
  469. break;
  470. }
  471. }
  472. return args;
  473. }
  474. function trim(str) {
  475. return str.replace( /^\s*/, '' ).replace( /\s*$/, '');
  476. }
  477. function createQueryStringFromObj(obj) {
  478. var encoded_args = [];
  479. for (var arg in obj) {
  480. encoded_args[encoded_args.length] = urlencode(arg) + '=' + urlencode(obj[arg]);
  481. }
  482. return '?' + encoded_args.join('&');
  483. }
  484. function genericEmailForm(rpc_base) {
  485. if (!hasAjax()) { alert('Sorry, your browser does not support this feature.'); return; }
  486. var form = gbid('sharetrends_form');
  487. var args = getFormValuesAsObject(form);
  488. var sts = document.getElementById('email_job_sts');
  489. if (!sts) {
  490. sts = document.createElement('div');
  491. sts.id = 'email_job_sts';
  492. sts.className = 'email_job_sts';
  493. form.parentNode.insertBefore(sts, form);
  494. }
  495. args['cb'] = 'email_jobtrends_callback';
  496. sendRequest(rpc_base + createQueryStringFromObj(args), form.method, function(response) { if (response.readyState != 4 || response.responseText == '') { return; } eval(response.responseText); });
  497. }
  498. function email_jobtrends_callback(status, errors) {
  499. if (status == 'success')
  500. sendemail_success();
  501. else
  502. sendemail_errors(errors);
  503. }
  504. function sendemail_success() {
  505. var sts = document.getElementById('email_job_sts');
  506. var form = gbid('sharetrends_form');
  507. var args = getFormValuesAsObject(form);
  508. sts.style.display = '';
  509. sts.innerHTML = '<p>Your email to <b>' + args.toEmail + '</b> has been sent! </p>';
  510. form.style.display = 'none';
  511. var again = document.createElement('a');
  512. again.href = '#';
  513. again.onclick = function () { sts.innerHTML = ''; form.style.display = ''; form.toEmail.value = args.toEmail; form.fromEmail.value = args.fromEmail; form.comments.value = ''; setTimeout( function( ) { form.toEmail.select(); }, 0 ); return false; };
  514. sts.firstChild.appendChild(again);
  515. again.innerHTML = 'Send another email';
  516. again.focus();
  517. }
  518. function sendemail_errors(errors) {
  519. var sts = document.getElementById('email_job_sts');
  520. var error_msg = '';
  521. for (var error in errors) {
  522. error_msg += '<li>' + errors[error] + '</li>';
  523. }
  524. sts.style.display = '';
  525. sts.innerHTML = '<ul class="error_msg">' + error_msg + '</ul>';
  526. }
  527. </script>
  528. <style type="text/css">
  529. td { font-size: 10pt; font-family: Arial, sans-serif; }
  530. .sectionTitle { color: rgb(128, 128, 128); margin: 0; font-size: 13px; font-weight: bold; line-height: 19px; }
  531. .separator_top { margin-bottom: 0 !important; height: auto; padding: 2px 2px 2px 14px; }
  532. label { font-weight: normal; }
  533. #footer { margin-top: 3em; }
  534. h2 { margin-bottom: 6px; font-size: 16px }
  535. h3 { font-size: 21px; margin: 0.5em 0; color: #666; padding-top: 0.5em; border-top: 2px solid #d8d8d8; }
  536. </style>
  537. <style type="text/css">
  538. a.open { background: url(/images/arrow-down-blue.gif) left center no-repeat; padding-left: 15px; }
  539. a.closed { background: url(/images/arrow-right-blue.gif) left center no-repeat; padding-left: 15px; }
  540. #sample_searches { margin-top: 1em; }
  541. #sample_searches li { margin-bottom: 0.75em; }
  542. #share_this_link,
  543. #email_this_link { font-weight: bold; white-space: nowrap; _height: 1%;}
  544. #email_this,
  545. #shareGraph { margin-bottom: 1.5em; }
  546. #sample_trends { margin-top: 2em; }
  547. .sample_trends_title { color: #666; }
  548. #sidebar { width: 220px; }
  549. .ws_content { margin-top: 6px; border: 1px solid #ccc; background: #ebebeb; padding: 5px; }
  550. .ws_content textarea { width:100%; }
  551. #sidebar .ws_content textarea { _width:208px; }
  552. .ws_content .error_msg { margin: 0.5em 0pt 0.5em 20px; padding-left: 0pt; }
  553. .ws_content .error_msg li { color:#c00;}
  554. .ws_content p { margin-bottom: 0; }
  555. .ws_content .lineItem { margin-bottom: 6px; }
  556. #shareCode_bottom { margin-bottom: 1em; }
  557. .example { color: #f60; }
  558. #trends_nav {
  559. margin: 0 0 0 14px;
  560. padding: 1em 2em 0 0;
  561. border-right: 1px solid #e8e8e8;
  562. }
  563. #trends_nav li {
  564. margin-bottom: 0.5em;
  565. list-style-type: none;
  566. white-space: nowrap;
  567. }
  568. </style>
  569. </head>
  570. <body id="trends_" class="trends_section">
  571. <style type="text/css">
  572. body { margin-top: 0; margin-left: 0; margin-right: 0; padding-top: 0; padding-right: 0; padding-left: 0; }
  573. #g_nav { border-bottom:1px solid #ccc; margin-bottom: 9px; }
  574. #g_nav a,
  575. #g_nav a:visited { color: #00c; }
  576. .navBi { display: -moz-inline-box; display: inline-block; padding: 9px 12px; margin: 0; list-style-type: none; }
  577. </style>
  578. <div id="g_nav">
  579. <table width="100%" cellpadding="0" cellspacing="0">
  580. <tr>
  581. <td nowrap>
  582. <style type="text/css">
  583. #p_nav a.selected { font-weight: bold; text-decoration:none; color: #000 !important; }
  584. </style>
  585. <div id="p_nav"><span class="navBi"><a href="/" title="Jobs"id="jobsLink" class="selected">Find Jobs</a></span><span class="navBi"><a href="/resumes" id="rezLink">Find Resumes</a></span><span class="navBi"><a href="https://ads.indeed.com/?hl=en&cc=US" id="empLink" onclick="if ( this.href.match('') == null ) { this.href += '' };">Employers</a></span></div>
  586. </td>
  587. <td align="right" nowrap>
  588. <style type="text/css">
  589. #navpromo a,
  590. #navpromo a:visited {
  591. color: #f60;
  592. }
  593. #u_nav .login_unconfirmed,
  594. #u_nav .login_unconfirmed a,
  595. #u_nav .login_unconfirmed a:visited {
  596. color: #c00
  597. }
  598. #u_nav .resume_pending,
  599. #u_nav .resume_pending a,
  600. #u_nav .resume_pending a:visited {
  601. color: #c00
  602. }
  603. #userOptionsLabel {
  604. position: relative;
  605. z-index: 5;
  606. }
  607. #userOptionsLabel b {
  608. cursor: pointer;
  609. text-decoration: underline;
  610. position: relative;
  611. z-index: 5;
  612. }
  613. #userOptionsLabel:active {
  614. outline: none;
  615. }
  616. #userOptionsLabel.active {
  617. padding: 9px 11px;
  618. margin-bottom: -1px;
  619. _margin-bottom: 0px;
  620. border: 1px solid #ccc;
  621. border-top: 0;
  622. }
  623. #userOptionsLabel.active b {
  624. color: #666;
  625. }
  626. #userOptionsLabel.active .arrowStub {
  627. border-width: 0px 3px 3px;
  628. _border-width: 0px 3px 4px;
  629. border-color: transparent;
  630. border-bottom-color: #666;
  631. top: -2px;
  632. border-style: dashed dashed solid;
  633. }
  634. #userOptionsLabel.active .halfPxlFix {
  635. background: #fff;
  636. bottom: -3px;
  637. height: 6px;
  638. left: 0;
  639. position: absolute;
  640. right: 0;
  641. border: 1px solid #fff;
  642. }
  643. .arrowStub {
  644. position: relative;
  645. border-style: solid dashed dashed;
  646. border-color: transparent;
  647. border-top-color: #666;
  648. display: -moz-inline-box;
  649. display: inline-block;
  650. font-size: 0;
  651. height: 0;
  652. line-height: 0;
  653. width: 0;
  654. left: 4px;
  655. border-width: 3px 3px 0px;
  656. padding-top: 1px;
  657. top: -1px;
  658. }
  659. #userOptions {
  660. z-index: 2;
  661. visibility: hidden;
  662. position: absolute;
  663. right : 0 px;
  664. x_ right: -1px;
  665. top: 100%;
  666. padding: 9px 15px;
  667. border: 1px solid #ccc;
  668. background: #fff;
  669. min-width: 150px;
  670. _width: 150px;
  671. text-align: left;
  672. }
  673. #userOptions.open {
  674. visibility: visible;
  675. }
  676. .userOptionItem {
  677. margin: 6px 0;
  678. }
  679. .userOptionItem a {
  680. white-space: nowrap;
  681. }
  682. .userOptionGroup {
  683. border-top: 1px solid #e8e8e8;
  684. margin-top: 12px;
  685. }
  686. .userNameRepeat {
  687. color: #a8a8a8;
  688. padding- right: 48px;
  689. font-weight: bold;
  690. }
  691. </style>
  692. <div id="u_nav">
  693. <script type="text/javascript">
  694. function isUserOptionsOpen() {
  695. return document.getElementById('userOptions').className == 'open';
  696. }
  697. function hideUserOptions(label, options) {
  698. options.className = '';
  699. label.className = 'navBi';
  700. }
  701. function toggleUserOptions(e) {
  702. var options = document.getElementById('userOptions');
  703. var label = document.getElementById('userOptionsLabel');
  704. if (isUserOptionsOpen()) {
  705. hideUserOptions(label, options);
  706. if (!e.keyCode) {
  707. label.blur();
  708. }
  709. } else {
  710. options.className = 'open';
  711. label.className = 'navBi active';
  712. document.onclick = function() {
  713. hideUserOptions(label, options);
  714. document.onclick = function() {
  715. };
  716. };
  717. if (e.keyCode && e.keyCode == 13) {
  718. var fL = gbid('userOptions').getElementsByTagName('a')[0];
  719. if (fL) {
  720. fL.focus();
  721. }
  722. }
  723. else {
  724. label.blur();
  725. }
  726. }
  727. stopPropagation(e);
  728. }
  729. function stopPropagation(e) {
  730. var e = e || window.event;
  731. e.stopPropagation ? e.stopPropagation() : e.cancelBubble = true;
  732. }
  733. </script>
  734. <div id="user_actions">
  735. <span class="navBi"><span id="navpromo"><a href="/promo/resume" onclick="window.location=this.href + '?from=nav&subfrom=rezprmstd&trk.origin=&trk.variant=rezprmstd&trk.tk='; return false;">Post your resume</a></span></span>
  736. <span class="navBi"><a href="http://www.indeed.com/account/login?dest=%2Fjobtrends%2FSocial-media.html" rel="nofollow" id="userOptionsLabel">Sign in</a></span>
  737. </div>
  738. </div>
  739. </td>
  740. </tr>
  741. </table>
  742. </div>
  743. <style type="text/css">
  744. .lnav .label { color: #808080; display: block; font-weight: normal; font-size: 12px; }
  745. .lnav .label b { font-weight: bold; color: #f60; text-transform: lowercase; }
  746. .lnav .input_text,
  747. .lnav .input_submit,
  748. .lnav .input_button { font-size: 16px; }
  749. .lnav .input_submit,
  750. .lnav .input_button { height: 28px; }
  751. .lnav .inwrapBorder .input_submit,
  752. .lnav .inwrapBorder .input_button { height: 24px; padding: 2px 9px; }
  753. #branding img { margin-bottom: 6px; }
  754. .inwrapBorder{border:1px solid #1C4ED9;border-top-color:#2F62F1;border-bottom-color:#133FBB;display:inline-block;width:auto;}
  755. .inwrapBorderTop{border-top:1px solid #69F;display:inline-block;background-color:#3163F2;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#3163F2',endColorstr='#2B57D5');background:-webkit-gradient(linear,left top,left bottom,from(#3163F2),to(#2B57D5));background:-moz-linear-gradient(top,#3163F2,#2B57D5);background:linear-gradient(top,#3163F2,#2B57D5);}
  756. .inwrapBorder .input_submit{background: transparent;border:0;color:#fff;font-family:Arial;font-size:15px;margin:0;padding:4px 9px;cursor:pointer;_padding:3px;}
  757. .inwrapBorder:hover{border-color:#235af6;border-top-color:#4072ff;border-bottom-color:#1e4fd9;}
  758. .inwrapBorderTop:hover{border-top-color:#7ba7ff;background-color:#4273ff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#4273ff',endColorstr='#3364f1');background:-webkit-gradient(linear,left top,left bottom,from(#4273ff),to(#3364f1));background:-moz-linear-gradient(top,#4273ff,#3364f1);background:linear-gradient(top,#4273ff,#3364f1);}\
  759. .inwrapBorder:active{border-color:#536db7;border-top-color:#4b69c1;border-bottom-color:#3753a6;}
  760. .inwrapBorder:active .inwrapBorderTop{border-top-color:#6c82c1;background-color:#4b69c1;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#4b69c1',endColorstr='#3753a6');background:-webkit-gradient(linear,left top,left bottom,from(#4b69c1),to(#3753a6));background:-moz-linear-gradient(top,#4b69c1,#3753a6);background:linear-gradient(top,#4b69c1,#3753a6);}
  761. </style>
  762. <script type="text/javascript">
  763. var urlencode = window.encodeURIComponent ?
  764. function ( str ) { return window.encodeURIComponent(str).replace(/%20/g,'+') } :
  765. function ( str ) { return escape(str).replace(/\+/g,'%2B').replace(/\//g,'%2F').replace(/%20/g,'+');
  766. }
  767. </script>
  768. <table class="lnav" cellpadding="5" cellspacing="0">
  769. <tr>
  770. <td><a id="branding" href="/"><img src="/images/indeed.png" alt="one search. all jobs. Indeed" width="175" height="72"></a></td>
  771. <td>
  772. <form name="trends_search_form" id="trends_search_form" action="/jobtrends" method="get">
  773. <table id="local_nav" cellpadding="3" cellspacing="0">
  774. <tr>
  775. <td><input id="trends_search_what_input" class="input_text" name="q" size="38" maxlength="512" value="Social-media" alt="job title, keywords or company"></td>
  776. <td><span class="inwrapBorder"><span class="inwrapBorderTop"><input class="input_submit" type="submit" value="Find Trends"></span></span></td>
  777. <td><span class="inwrapBorder"><span class="inwrapBorderTop"><input class="input_submit" type="button" value="Find Jobs" onclick="window.location = '/jobs?q=' + urlencode( this.form.q.value ) + '&l=' + urlencode( this.form.l.value ); return false;"></span></span></td>
  778. </tr>
  779. <tr>
  780. <td colspan="3" style="padding-top:0"><span class="label"><b>What:</b> job title, keywords or company</span></td>
  781. </tr>
  782. </table>
  783. <input type="hidden" name="l" value="">
  784. </form>
  785. </td>
  786. </tr>
  787. </table>
  788. <div class="separator_top">
  789. <div class="sectionTitle">
  790. <b>Job Trends</b>
  791. </div>
  792. </div>
  793. <table border="0" cellpadding="0" cellspacing="0">
  794. <tr valign="top">
  795. <td width="200" style="width:200px;">
  796. <ul id="trends_nav">
  797. <li><b>Job Trends</b></li>
  798. <li><a href="/jobtrends.jsp">Job Postings Per Capita</a></li>
  799. <li><a href="/jobtrends/unemployment">Job Market Competition</a></li>
  800. <li><a href="/jobtrends/industry">Industry Employment Trends</a></li>
  801. </ul>
  802. </td>
  803. <td style="padding-top:1em;padding-left:2em;">
  804. <table align="center" border="0" cellspacing="0" cellpadding="0">
  805. <tr>
  806. <td colspan=2>
  807. <h1>Social-media Job Trends</h1>
  808. </td>
  809. </tr>
  810. <tr>
  811. <td style="padding-right: 21px; width:540px" valign=top>
  812. <div style="margin: 0; text-align: right; padding: 0 6px 3px;">Scale:
  813. <b>Absolute</b> - <a href="/jobtrends?q=Social-media&relative=1" rel="nofollow">Relative</a>
  814. </div>
  815. <img width="540" height="300" src="http://www.indeed.com/trendgraph/jobgraph.png?q=Social-media" border="0" alt="Social-media Job Trends graph">
  816. <br><br>
  817. <p style="text-align:center">Indeed.com searches millions of jobs from thousands of job sites.<br>
  818. This job trends graph shows the percentage of jobs we find that contain your search terms.
  819. </p>
  820. <p style="text-align:center">Find
  821. <a href="/jobs?q=Social-media">Social-media jobs</a>
  822. </p>
  823. <div>
  824. <p style="text-align:center; margin-bottom: 0">Feel free to <a id="shareCode_bottom_link" href="#shareCode_bottom" onclick="simpleToggle( this, document.getElementById('shareCode_bottom'), { onopen: function() { var code = document.getElementById('graph_code_540x300_bottom'); code.focus(); code.select(); } } ); return false;">share this graph</a></p>
  825. <div id="shareCode_bottom" class="ws_content">
  826. <p style="margin-bottom:0">Insert the code below into any webpage to include this graph:</p>
  827. <textarea id="graph_code_540x300_bottom" onclick="this.select();" rows="5" cols="40" readonly>&lt;div style="width:540px"&gt;
  828. &lt;a href="http://www.indeed.com/jobtrends?q=Social-media" title="Social-media Job Trends"&gt;
  829. &lt;img width="540" height="300" src="http://www.indeed.com/trendgraph/jobgraph.png?q=Social-media" border="0" alt="Social-media Job Trends graph"&gt;
  830. &lt;/a&gt;
  831. &lt;table width="100%" cellpadding="6" cellspacing="0" border="0" style="font-size:80%"&gt;&lt;tr&gt;
  832. &lt;td&gt;&lt;a href="http://www.indeed.com/jobtrends?q=Social-media"&gt;Social-media Job Trends&lt;/a&gt;&lt;/td&gt;
  833. &lt;td align="right"&gt;&lt;a href="http://www.indeed.com/jobs?q=Social-media"&gt;Social-media jobs&lt;/a&gt;&lt;/td&gt;
  834. &lt;/tr&gt;&lt;/table&gt;
  835. &lt;/div&gt;</textarea>
  836. </div>
  837. </div>
  838. <script type="text/javascript">document.getElementById('shareCode_bottom_link').className = 'closed'; document.getElementById('shareCode_bottom').style.display = 'none';</script>
  839. </td>
  840. <td valign="top" align="left" id="sidebar">
  841. <div id="email_this">
  842. <a id="email_this_link" href="mailto:?subject=Job%20trends%20from%20Indeed&body=http%3A%2F%2Fwww.indeed.com%2Fjobtrends%3Fq%3DSocial-media" class="closed" onclick="simpleToggle( this, document.getElementById('email_this_form'), { onopen: function() { document.getElementById('fromEmail').select(); } } ); return false;">Email to a friend</a>
  843. <div id="email_this_form" style="display:none" class="ws_content">
  844. <div id="email_job_sts"></div>
  845. <form id="sharetrends_form" action="/rpc/sharetrends" method="get" onsubmit="genericEmailForm('/rpc/sharetrends'); return false;">
  846. <input type="hidden" name="q" value="Social-media">
  847. <input type="hidden" name="relative" value="">
  848. <input type="hidden" name="title" value="Social-media Job Trends">
  849. <div class="lineItem">
  850. <label for="fromEmail">From my email address</label><br>
  851. <input type="text" id="fromEmail" name="fromEmail" value="">
  852. </div>
  853. <div class="lineItem">
  854. <label for="toEmail">To email address</label><br>
  855. <input type="text" id="toEmail" name="toEmail" value="">
  856. </div>
  857. <div class="lineItem">
  858. <input type="checkbox" id="ccEmail" name="ccEmail" value="1"><label for="ccEmail">Send me a copy</label><br>
  859. </div>
  860. <div class="lineItem">
  861. <label for="comments">Comments (optional)</label><br>
  862. <textarea id="comments" name="comments" rows="5" cols="40"></textarea>
  863. </div>
  864. <div class="lineItem">
  865. <input type="submit" value="Send">
  866. </div>
  867. </form>
  868. </div>
  869. </div>
  870. <div id="shareGraph">
  871. <a id="share_this_link" href="#shareCode" onclick="simpleToggle( this, document.getElementById('shareCode'), { onopen: function() { var code = document.getElementById('graph_code_540x300'); code.focus(); code.select(); } } ); return false;">Post on your blog/website</a>
  872. <div id="shareCode" class="ws_content">
  873. <p style="margin-bottom:0">Insert the code below into any webpage to include this graph:</p>
  874. <textarea id="graph_code_540x300" onclick="this.select();" rows="5" cols="20" readonly>&lt;div style="width:540px"&gt;
  875. &lt;a href="http://www.indeed.com/jobtrends?q=Social-media" title="Social-media Job Trends"&gt;
  876. &lt;img width="540" height="300" src="http://www.indeed.com/trendgraph/jobgraph.png?q=Social-media" border="0" alt="Social-media Job Trends graph"&gt;
  877. &lt;/a&gt;
  878. &lt;table width="100%" cellpadding="6" cellspacing="0" border="0" style="font-size:80%"&gt;&lt;tr&gt;
  879. &lt;td&gt;&lt;a href="http://www.indeed.com/jobtrends?q=Social-media"&gt;Social-media Job Trends&lt;/a&gt;&lt;/td&gt;
  880. &lt;td align="right"&gt;&lt;a href="http://www.indeed.com/jobs?q=Social-media"&gt;Social-media jobs&lt;/a&gt;&lt;/td&gt;
  881. &lt;/tr&gt;&lt;/table&gt;
  882. &lt;/div&gt;</textarea>
  883. </div>
  884. </div>
  885. <script type="text/javascript">document.getElementById('share_this_link').className = 'closed'; document.getElementById('shareCode').style.display = 'none';</script>
  886. <div id="sample_trends">
  887. <div class="sample_trends_title">Top Job Trends</div>
  888. <ol id="sample_searches">
  889. <li>
  890. <a href="/jobtrends">HTML5</a>
  891. </li>
  892. <li>
  893. <a href="/jobtrends/MongoDB.html">MongoDB</a>
  894. </li>
  895. <li>
  896. <a href="/jobtrends/iOS.html">iOS</a>
  897. </li>
  898. <li>
  899. <a href="/jobtrends/Android.html">Android</a>
  900. </li>
  901. <li>
  902. <a href="/jobtrends/Mobile-app.html">Mobile app</a>
  903. </li>
  904. <li>
  905. <a href="/jobtrends/Puppet.html">Puppet</a>
  906. </li>
  907. <li>
  908. <a href="/jobtrends/Hadoop.html">Hadoop</a>
  909. </li>
  910. <li>
  911. <a href="/jobtrends/jQuery.html">jQuery</a>
  912. </li>
  913. <li>
  914. <a href="/jobtrends/PaaS.html">PaaS</a>
  915. </li>
  916. <li>
  917. <a href="/jobtrends/Social-Media.html">Social Media</a>
  918. </li>
  919. </ol>
  920. </div>
  921. </td>
  922. </tr>
  923. </table>
  924. </td>
  925. </tr>
  926. </table>
  927. <!--ja-->
  928. <style type="text/css">
  929. #secondary_nav a,
  930. #secondary_nav a:link,
  931. #secondary_nav a:visited { color: #77c; text-decoration: none; }
  932. #secondary_nav a:hover { text-decoration: underline; }
  933. </style>
  934. <!-- jobtrends -->
  935. <div id="footerWrapper" style="text-align:center;">
  936. <div id="footer" style="text-align:left;">
  937. <div class="separator_bottom"></div>
  938. <div id="secondary_nav">
  939. <div style="text-align:center; padding:1em;">For jobs in Spain, visit <a href="http://www.indeed.es/">Indeed Spain</a></div>
  940. <a href="/" title="Jobs" id="jobs_product_link">Jobs</a> -
  941. <a href="/salary" title="Salary Search" id="salaries_product_link">Salaries</a> -
  942. <a href="/jobtrends" title="Career Trends" id="trends_product_link">Trends</a> -
  943. <a href="/forum" title="Employment Forums" id="forums_product_link">Forums</a> -
  944. <script type="text/javascript">
  945. document.getElementById('jobs_product_link').onclick = function( e ) { if ( !document.trends_search_form ) { return; } var q = document.trends_search_form.q.value; if ( q ) { window.location = '/jobs?q=' + urlencode( q ) + '&l=' + urlencode( document.trends_search_form.l.value ); return false; } };
  946. document.getElementById('salaries_product_link').onclick = function( e ) { if ( !document.trends_search_form ) { return; } var q = document.trends_search_form.q.value; var l = document.trends_search_form.l.value; if ( q || l ) { window.location = '/salary?q1=' + urlencode( q ) + '&l1=' + urlencode( l ); return false; } };
  947. document.getElementById('forums_product_link').onclick = function( e ) { if ( !document.trends_search_form ) { return; } var q = document.trends_search_form.q.value; if ( q ) { window.location = '/forum/?q=' + urlencode( q ) + '&l=' + urlencode( document.trends_search_form.l.value ); return false; } };
  948. </script>
  949. <a href="/find-jobs.jsp">Browse Jobs</a> -
  950. <a href="/tools/jobseeker/">Tools</a> -
  951. <a href="https://ads.indeed.com/jobroll/?hl=en&cc=US">Publishers</a> -
  952. <a href="/intl/en/about.html"><nobr>About</nobr></a> -
  953. <a href="/support">Contact</a>
  954. <br/>&nbsp;<br/><font size="-2">&copy;2012 Indeed</font>
  955. </div>
  956. </div>
  957. </div>
  958. <script type="text/javascript">
  959. PENDING_ANALYTICS_VARS = window.PENDING_ANALYTICS_VARS || [];
  960. PENDING_ANALYTICS_VARS[PENDING_ANALYTICS_VARS.length] = ['_setCustomVar', 4, 'semRevTest', '-1', 1];
  961. </script>
  962. <script type="text/javascript">
  963. PENDING_ANALYTICS_VARS = window.PENDING_ANALYTICS_VARS || [];
  964. PENDING_ANALYTICS_VARS[PENDING_ANALYTICS_VARS.length] = ['_setCustomVar', 5, 'loggedIn', 'false', 3];
  965. </script>
  966. <script type="text/javascript">
  967. var _gaq = _gaq || [];
  968. _gaq.push(['_setAccount', 'UA-90780-1']);
  969. (function() {
  970. if (window.PENDING_ANALYTICS_VARS && window.PENDING_ANALYTICS_VARS.length > 0) {
  971. for (var i in PENDING_ANALYTICS_VARS) {
  972. _gaq.push(PENDING_ANALYTICS_VARS[i]);
  973. }
  974. }
  975. })();
  976. _gaq.push(['_trackPageview']);
  977. _gaq.push(['_trackPageLoadTime']);
  978. (function() {
  979. var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
  980. ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
  981. var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  982. })();
  983. </script>
  984. <script>
  985. var _comscore = _comscore || [];
  986. _comscore.push({ c1: "2", c2: "6486505", c4:"www.indeed.com/jobtrends/Social-media.html", c15:"16og6ask50k0j1ol"});
  987. (function() { var s = document.createElement("script"), el = document.getElementsByTagName("script")[0]; s.async = true; s.src = (document.location.protocol == "https:" ? "https://sb" : "http://b") + ".scorecardresearch.com/beacon.js"; el.parentNode.insertBefore(s, el); })();
  988. </script>
  989. <noscript>
  990. <img src="http://b.scorecardresearch.com/p?c1=2&c2=6486505&c4=www.indeed.com%2Fjobtrends%2FSocial-media.html&c15=16og6ask50k0j1ol&cv=2.0&cj=1" style="display:none" width="0" height="0" alt=""/>
  991. </noscript>
  992. </body>
  993. </html>