{"id":16,"date":"2020-07-25T15:52:25","date_gmt":"2020-07-25T15:52:25","guid":{"rendered":"https:\/\/classificadosjundiai.com.br\/site\/?page_id=16"},"modified":"2020-08-09T19:47:28","modified_gmt":"2020-08-09T19:47:28","slug":"como-anunciar","status":"publish","type":"page","link":"https:\/\/classificadosjundiai.com.br\/site\/como-anunciar\/","title":{"rendered":"COMO ANUNCIAR"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"16\" class=\"elementor elementor-16\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-042db99 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"042db99\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-beb436e\" data-id=\"beb436e\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-4accede elementor-widget elementor-widget-html\" data-id=\"4accede\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t     <script language=\"JavaScript\">\r\n<!--\r\nfunction FDK_StripChars(theFilter,theString)\r\n{\r\n\tvar strOut,i,curChar\r\n\r\n\tstrOut = \"\"\r\n\tfor (i=0;i < theString.length; i++)\r\n\t{\r\n\t\tcurChar = theString.charAt(i)\r\n\t\tif (theFilter.indexOf(curChar) < 0)\t\/\/ if it's not in the filter, send it thru\r\n\t\t\tstrOut += curChar\r\n\t}\r\n\treturn strOut\r\n}\r\n\r\nfunction FDK_AllInRange(x,y,theString)\r\n{\r\n\tvar i, curChar\r\n\r\n\tfor (i=0; i < theString.length; i++)\r\n\t{\r\n\t\tcurChar = theString.charAt(i)\r\n\t\tif (curChar < x || curChar > y) \/\/the char is not in range\r\n\t\t\treturn false\r\n\t}\r\n\treturn true\r\n}\r\n\r\nfunction FDK_reformat(s)\r\n{\r\n    var acpf;\r\n    var sPos = 0;\r\n    var resultString = \"\";\r\n\r\n    for (var i = 1; i < FDK_reformat.acpfuments.length; i++) {\r\n       acpf = FDK_reformat.acpfuments[i];\r\n       if (i % 2 == 1)\r\n           resultString += acpf;\r\n       else\r\n       {\r\n           resultString += s.substring(sPos, sPos + acpf);\r\n           sPos += acpf;\r\n       }\r\n    }\r\n    return resultString;\r\n}\r\n\r\nfunction FDK_AddToValidateArray(FormName,FormElement,Validation,SetFocus)\r\n{\r\n    var TheRoot=eval(\"document.\"+FormName);\r\n\r\n    if (!TheRoot.ValidateForm)\r\n    {\r\n        TheRoot.ValidateForm = true;\r\n        eval(FormName+\"NameArray = new Array()\")\r\n        eval(FormName+\"ValidationArray = new Array()\")\r\n        eval(FormName+\"FocusArray = new Array()\")\r\n    }\r\n    var ArrayIndex = eval(FormName+\"NameArray.length\");\r\n    eval(FormName+\"NameArray[ArrayIndex] = FormElement\");\r\n    eval(FormName+\"ValidationArray[ArrayIndex] = Validation\");\r\n    eval(FormName+\"FocusArray[ArrayIndex] = SetFocus\");\r\n\r\n}\r\n\r\nfunction FDK_ValidateEmail(FormElement,Required,ErrorMsg)\r\n{\r\n   var msg = \"\";\r\n   var val = FormElement.value;\r\n   var msgInvalid = ErrorMsg;\r\n\r\n   var theLen = FDK_StripChars(\" \",val).length\r\n   if (theLen == 0)\t     {\r\n     if (!Required) return \"\";\r\n     else return msgInvalid;\r\n   }\r\n\r\n   if (val.indexOf(\"@\",0) < 0 || val.indexOf(\".\")<0)\r\n   {\r\n      msg = msgInvalid;\r\n   }\r\n   return msg;\r\n}\r\n\r\nfunction FDK_AddEmailValidation(FormName,FormElementName,Required,SetFocus,ErrorMsg)  {\r\n  var ValString = \"FDK_ValidateEmail(\"+FormElementName+\",\"+Required+\",\"+ErrorMsg+\")\"\r\n  FDK_AddToValidateArray(FormName,eval(FormElementName),ValString,SetFocus)\r\n}\r\n\r\nfunction FDK_Validate(FormName, stopOnFailure, AutoSubmit, ErrorHeader)\r\n{\r\n var theFormName = FormName;\r\n var theElementName = \"\";\r\n if (theFormName.indexOf(\".\")>=0)\r\n {\r\n   theElementName = theFormName.substring(theFormName.indexOf(\".\")+1)\r\n   theFormName = theFormName.substring(0,theFormName.indexOf(\".\"))\r\n }\r\n var ValidationCheck = eval(\"document.\"+theFormName+\".ValidateForm\")\r\n if (ValidationCheck)\r\n {\r\n  var theNameArray = eval(theFormName+\"NameArray\")\r\n  var theValidationArray = eval(theFormName+\"ValidationArray\")\r\n  var theFocusArray = eval(theFormName+\"FocusArray\")\r\n  var ErrorMsg = \"\";\r\n  var FocusSet = false;\r\n  var i\r\n  var msg\r\n\r\n\r\n        \/\/ Go through the Validate Array that may or may not exist\r\n        \/\/ and call the Validate function for all elements that have one.\r\n  if (String(theNameArray)!=\"undefined\")\r\n  {\r\n   for (i = 0; i < theNameArray.length; i ++)\r\n   {\r\n    msg=\"\";\r\n    if (theNameArray[i].name == theElementName || theElementName == \"\")\r\n    {\r\n      msg = eval(theValidationArray[i]);\r\n    }\r\n    if (msg != \"\")\r\n    {\r\n     ErrorMsg += \"\\n\"+msg;\r\n     if (stopOnFailure == \"1\")\r\n     {\r\n       if (theFocusArray[i] && !FocusSet)\r\n      {\r\n       FocusSet=true;\r\n       theNameArray[i].focus();\r\n      }\r\n      alert(ErrorHeader+ErrorMsg);\r\n      document.MM_returnValue = false;\r\n      break;\r\n     }\r\n     else\r\n     {\r\n      if (theFocusArray[i] && !FocusSet)\r\n      {\r\n       FocusSet=true;\r\n       theNameArray[i].focus();\r\n      }\r\n     }\r\n    }\r\n   }\r\n  }\r\n  if (ErrorMsg!=\"\" && stopOnFailure != \"1\")\r\n  {\r\n   alert(ErrorHeader+ErrorMsg);\r\n  }\r\n  document.MM_returnValue = (ErrorMsg==\"\");\r\n  if (document.MM_returnValue && AutoSubmit)\r\n  {\r\n   eval(\"document.\"+FormName+\".submit()\")\r\n  }\r\n }\r\n}\r\n\/\/-->\r\n<\/script>\r\n<script language=\"javascript\">\r\nfunction valida_campo()\r\n{\r\n  <!--\r\n  var nome = document.faleconosco.nome.value\r\n  if (nome==\"\")\r\n  {\r\n    alert(\"Informe seu nome por gentileza!\");\r\n    document.faleconosco.nome.focus()\r\n    return false\r\n  }\r\n\r\n  var email=document.faleconosco.email.value;\r\n  if (email==\"\")\r\n  {\r\n    alert(\"Informe o seu EMail!\")\r\n    document.faleconosco.email.focus()\r\n    return false\r\n   }\r\n  var tipodeanuncio = document.faleconosco.tipodeanuncio.value\r\n  if (tipodeanuncio==\"\")\r\n  {\r\n    alert(\"Escolha o tipo de an\u00fancio ou banner!\");\r\n    document.faleconosco.tipodeanuncio.focus()\r\n    return false\r\n}\r\n}\r\n\/\/-->\r\n<\/script>\r\n FORMUL\u00c1RIO PARA COMPRA DE AN\u00daNCIO OU BANNER<br> (*V\u00e1lidos por 30 dias.)\r\n<form onSubmit=\"return valida_campo()\" action=\"https:\/\/classificadosjundiai.com.br\/enviar.php\" method=\"post\" enctype=\"multipart\/form-data\" name=\"faleconosco\" id=\"form1\">\r\n<input type=\"hidden\" name=\"recipient\" value=\"marcelo@classificadosjundiai.com.br\">\r\n<BR>\r\n<table style=\"border:0px\" cellpadding=\"2\" cellspacing=\"2\"  ALIGN=\"\" >\r\n<\/tr>\r\n                <tr>\r\n                <td align=\"\" height=\"60\"> <\/td>\r\n                <td height=\"60\"><font class=\"contato\"><font color=\"#0080c0\"><BR> * Escolha Seu An\u00fancio ou Banner<\/font><BR>\r\n                <select name=\"tipodeanuncio\" id=\"tipodeanuncio\" style=\"border:1px solid #c0c0c0;padding:10px;font-size:20px\">\r\n<option>AN\u00daNCIOS DISPON\u00cdVEIS<\/option>\r\n<option value=\"Padr\u00e3o apenas na Categoria Escolhida R$ 95,00 por 30 dias\">01-Padr\u00e3o na Categoria Escolhida: R$95,00<\/option>\r\n<option value=\"Padr\u00e3o na Categoria e p\u00e1gina inicial - R$ 150,00 - por 30 dias\">02-Padr\u00e3o na Categoria e P\u00e1gina Inicial: R$ 150,00<\/option>\r\n<option value=\"Padr\u00e3o em Erotismo(GP\/Acompanhante) - R$ 350,00 - por 45 dias\">03-Padr\u00e3o em EROTISMO (GP\/Acompanhante): R$ 350,00<\/option>\r\n<option>----------------------------<\/option>\r\n<option>BANNERS DISPON\u00cdVEIS<\/option>\r\n<option value=\"SUPER BANNER 728X90 - Topo da P\u00e1gina Inicial - R$ 300,00 - por 30 Dias de Publica\u00e7\u00e3o (S\u00f3 Voc\u00ea)\">04-BANNER 728X90 - Topo P\u00e1gina Inicial: R$ 300,00<\/option>\r\n<option value=\"SUPER BANNER 728X90 - Topo da Categoria Escolhida - R$ 300,00 - por 30 Dias de Publica\u00e7\u00e3o (S\u00f3 Voc\u00ea)\">05-BANNER 728X90 - Topo Inicial + Categoria: R$ 350,00<\/option>\r\n<option value=\"BANNER LATERAL DIREITA 250X150 - P\u00e1gina Inicial - 30 Dias de Publica\u00e7\u00e3o - R$ 150,00\/600,00 anual\">06-BANNER LATERAL DIREITA 250X150: R$ 150,00<\/option>\r\n<option value=\"BANNER LATERAL DIREITA 250X300 - P\u00e1gina Inicial - 30 Dias de Publica\u00e7\u00e3o - R$ 200,00\/800,00 anual\">07-BANNER LATERAL DIREITA 250X300: R$ 200,00<\/option>\r\n<option value=\"BIG BANNER 1.200X420 - P\u00e1gina Inicial - 30 Dias de Publica\u00e7\u00e3o - R$ 800,00\/1.800 anual\">08-BIG BANNER 1.200X420 - P\u00e1gina Inicial: R$ 800,00<\/option>\r\n<option value=\"BIG BANNER 1.200X420 - Categotia Escolhida - 30 Dias de Publica\u00e7\u00e3o - R$ 1.200,00\/1.600 anual\">09-BIG BANNER 1.200X420 - Inicial + Categoria: R$ 1.200,00<\/option>\r\n<option> <\/option>\r\n<\/select>\r\n<\/tr><tr>\r\n                <td align=\"\" height=\"60\"> <\/td>\r\n                <td height=\"60\"><font class=\"contato\"><font color=\"#0080c0\"><BR> * Nome do Anunciante<\/font><BR>\r\n                <input type=\"text\" name=\"nome\" size=\"\" tabindex=\"1\" style=\"border:1px solid #c0c0c0;padding: 10px;font-size:25px\"><BR><BR><\/td>\r\n              <\/tr>\r\n              <tr>\r\n                <td align=\"\" height=\"60\"> <\/td>\r\n                <td height=\"60\"><font class=\"contato\"><font color=\"#0080c0\"><BR> * Digite um E-mail V\u00e1lido<\/font><BR>\r\n                <input type=\"text\" name=\"email\" size=\"\" tabindex=\"2\" style=\"border:1px solid #c0c0c0;padding: 10px;font-size:25px\"><BR><BR><\/td>\r\n\t\t\t  <\/tr>\r\n              <tr>\r\n                <td align=\"\" height=\"60\"> <\/td>\r\n                <td height=\"60\"><font class=\"contato\"><font color=\"#0080c0\"><BR> * Prefixo e Telefone<\/font><BR>\r\n                <input type=\"text\" name=\"telefone\" size=\"\" tabindex=\"3\" style=\"border:1px solid #c0c0c0;padding:10px;font-size:25px\"><BR><BR><\/td>\r\n                <\/tr>\r\n                <tr>\r\n<td height=\"10\"> <\/TD>\r\n<tr>\r\n<td align=\"\" height=\"60\"> <\/td>\r\n<td height=\"60\"><font class=\"contato\"><BR> * Digite Seu An\u00fancio<\/font><BR>\r\n<TEXTAREA NAME=\"texto\" COLS=\"39\" ROWS=\"6\" TABINDEX=\"center\" style=\"border:1px solid #c0c0c0;padding:10px;font-size:20px\">Texto base de at\u00e9 50 palavras.<\/textarea><\/td>\r\n<\/tr>\r\n<\/table>\r\n<BR>\r\n<P align=\"center\"><input style=\"border:2px solid #303030;padding:10px;font-size:20px; cursor: hand\" onMouseOver=\"this.style.backgroundColor='#44A2FF';\" onMouseOut=\"this.style.backgroundColor=''\" type=\"submit\" onClick=\"FDK_AddEmailValidation('faleconosco','document.faleconosco.email',true,true,'\\'   Voc&ecirc; deve digita-lo Corretamente!\\'');FDK_Validate('faleconosco',true,false,'Precisamos do seu E-Mail para Contato');return document.MM_returnValue\" value=\" ENVIAR FORMUL\u00c1RIO \" ><\/form>\r\n<BR><div align=\"center\"><font class=\"text\">\r\n<font color=\"#b50000\">ATEN\u00c7\u00c3O:<\/font><BR> N\u00c3O SE PREOCUPE COM MAIORES DETALHES.<BR>Ap\u00f3s o envio da mensagem voc\u00ea receber\u00e1 em seu email todas as inform\u00e7\u00f5es para Viabilizar a Publica\u00e7\u00e3o de seu An\u00fancio ou Banner.\r\n<\/font><\/td><\/tr><\/table>\r\n<BR>\r\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>FORMUL\u00c1RIO PARA COMPRA DE AN\u00daNCIO OU BANNER (*V\u00e1lidos por 30 dias.) * Escolha Seu An\u00fancio ou Banner AN\u00daNCIOS DISPON\u00cdVEIS01-Padr\u00e3o na Categoria Escolhida: R$95,0002-Padr\u00e3o na Categoria e P\u00e1gina Inicial: R$ 150,0003-Padr\u00e3o em EROTISMO (GP\/Acompanhante): R$ 350,00&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-BANNERS DISPON\u00cdVEIS04-BANNER 728X90 &#8211; Topo P\u00e1gina Inicial: R$ 300,0005-BANNER 728X90 &#8211; Topo Inicial + Categoria: R$ 350,0006-BANNER LATERAL DIREITA 250X150: R$ [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"ocean_post_layout":"","ocean_both_sidebars_style":"","ocean_both_sidebars_content_width":0,"ocean_both_sidebars_sidebars_width":0,"ocean_sidebar":"0","ocean_second_sidebar":"0","ocean_disable_margins":"enable","ocean_add_body_class":"","ocean_shortcode_before_top_bar":"","ocean_shortcode_after_top_bar":"","ocean_shortcode_before_header":"","ocean_shortcode_after_header":"","ocean_has_shortcode":"","ocean_shortcode_after_title":"","ocean_shortcode_before_footer_widgets":"","ocean_shortcode_after_footer_widgets":"","ocean_shortcode_before_footer_bottom":"","ocean_shortcode_after_footer_bottom":"","ocean_display_top_bar":"default","ocean_display_header":"default","ocean_header_style":"","ocean_center_header_left_menu":"0","ocean_custom_header_template":"0","ocean_custom_logo":0,"ocean_custom_retina_logo":0,"ocean_custom_logo_max_width":0,"ocean_custom_logo_tablet_max_width":0,"ocean_custom_logo_mobile_max_width":0,"ocean_custom_logo_max_height":0,"ocean_custom_logo_tablet_max_height":0,"ocean_custom_logo_mobile_max_height":0,"ocean_header_custom_menu":"0","ocean_menu_typo_font_family":"0","ocean_menu_typo_font_subset":"","ocean_menu_typo_font_size":0,"ocean_menu_typo_font_size_tablet":0,"ocean_menu_typo_font_size_mobile":0,"ocean_menu_typo_font_size_unit":"px","ocean_menu_typo_font_weight":"","ocean_menu_typo_font_weight_tablet":"","ocean_menu_typo_font_weight_mobile":"","ocean_menu_typo_transform":"","ocean_menu_typo_transform_tablet":"","ocean_menu_typo_transform_mobile":"","ocean_menu_typo_line_height":0,"ocean_menu_typo_line_height_tablet":0,"ocean_menu_typo_line_height_mobile":0,"ocean_menu_typo_line_height_unit":"","ocean_menu_typo_spacing":0,"ocean_menu_typo_spacing_tablet":0,"ocean_menu_typo_spacing_mobile":0,"ocean_menu_typo_spacing_unit":"","ocean_menu_link_color":"","ocean_menu_link_color_hover":"","ocean_menu_link_color_active":"","ocean_menu_link_background":"","ocean_menu_link_hover_background":"","ocean_menu_link_active_background":"","ocean_menu_social_links_bg":"","ocean_menu_social_hover_links_bg":"","ocean_menu_social_links_color":"","ocean_menu_social_hover_links_color":"","ocean_disable_title":"default","ocean_disable_heading":"default","ocean_post_title":"","ocean_post_subheading":"","ocean_post_title_style":"","ocean_post_title_background_color":"","ocean_post_title_background":0,"ocean_post_title_bg_image_position":"","ocean_post_title_bg_image_attachment":"","ocean_post_title_bg_image_repeat":"","ocean_post_title_bg_image_size":"","ocean_post_title_height":0,"ocean_post_title_bg_overlay":0.5,"ocean_post_title_bg_overlay_color":"","ocean_disable_breadcrumbs":"default","ocean_breadcrumbs_color":"","ocean_breadcrumbs_separator_color":"","ocean_breadcrumbs_links_color":"","ocean_breadcrumbs_links_hover_color":"","ocean_display_footer_widgets":"default","ocean_display_footer_bottom":"default","ocean_custom_footer_template":"0","footnotes":""},"class_list":["post-16","page","type-page","status-publish","hentry","entry"],"_links":{"self":[{"href":"https:\/\/classificadosjundiai.com.br\/site\/wp-json\/wp\/v2\/pages\/16","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/classificadosjundiai.com.br\/site\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/classificadosjundiai.com.br\/site\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/classificadosjundiai.com.br\/site\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/classificadosjundiai.com.br\/site\/wp-json\/wp\/v2\/comments?post=16"}],"version-history":[{"count":8,"href":"https:\/\/classificadosjundiai.com.br\/site\/wp-json\/wp\/v2\/pages\/16\/revisions"}],"predecessor-version":[{"id":246,"href":"https:\/\/classificadosjundiai.com.br\/site\/wp-json\/wp\/v2\/pages\/16\/revisions\/246"}],"wp:attachment":[{"href":"https:\/\/classificadosjundiai.com.br\/site\/wp-json\/wp\/v2\/media?parent=16"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}