Buscamos agregar valor à experiência de nossos leitores, seguidores e associados sempre e, para além disso, sermos referência para o sucesso profissional de cada um de vocês.
// = 0) {
this.isIE = true;
this.version = parseFloat(ua.substr(i + s.length));
return;
}
s = “Netscape6/”;
if ((i = ua.indexOf(s)) >= 0) {
this.isNS = true;
this.version = parseFloat(ua.substr(i + s.length));
return;
}
s = “Gecko”;
if ((i = ua.indexOf(s)) >= 0) {
this.isNS = true;
this.version = 6.1;
return;
}
}
var browser = new BrowserZoomPlugin;
var dragObj = new Object;
dragObj.zIndex = 0;
function zoominto_dragStart(event, id) {
var el;
var x, y;
if (id) {
dragObj.elNode = document.getElementById(id);
} else {
if (browser.isIE) {
dragObj.elNode = window.event.srcElement;
}
if (browser.isNS) {
dragObj.elNode = event.target;
}
if (dragObj.elNode.nodeType == 3) {
dragObj.elNode = dragObj.elNode.parentNode;
}
}
if (browser.isIE) {
x = window.event.clientX + document.documentElement.scrollLeft + document.body.scrollLeft;
y = window.event.clientY + document.documentElement.scrollTop + document.body.scrollTop;
}
if (browser.isNS) {
x = event.clientX + window.scrollX;
y = event.clientY + window.scrollY;
}
dragObj.cursorStartX = x;
dragObj.cursorStartY = y;
dragObj.elStartLeft = parseInt(dragObj.elNode.style.left, 10);
dragObj.elStartTop = parseInt(dragObj.elNode.style.top, 10);
if (isNaN(dragObj.elStartLeft)) {
dragObj.elStartLeft = 0;
}
if (isNaN(dragObj.elStartTop)) {
dragObj.elStartTop = 0;
}
dragObj.elNode.style.zIndex = ++dragObj.zIndex;
if (browser.isIE) {
document.attachEvent(“onmousemove”, zoominto_dragGo);
document.attachEvent(“onmouseup”, zoominto_dragStop);
window.event.cancelBubble = true;
window.event.returnValue = false;
}
if (browser.isNS) {
document.addEventListener(“mousemove”, zoominto_dragGo, true);
document.addEventListener(“mouseup”, zoominto_dragStop, true);
event.preventDefault();
}
}
function zoominto_dragGo(event) {
var x, y;
if (browser.isIE) {
x = window.event.clientX + document.documentElement.scrollLeft + document.body.scrollLeft;
y = window.event.clientY + document.documentElement.scrollTop + document.body.scrollTop;
}
if (browser.isNS) {
x = event.clientX + window.scrollX;
y = event.clientY + window.scrollY;
}
dragObj.elNode.style.left = dragObj.elStartLeft + x – dragObj.cursorStartX + “px”;
dragObj.elNode.style.top = dragObj.elStartTop + y – dragObj.cursorStartY + “px”;
if (browser.isIE) {
window.event.cancelBubble = true;
window.event.returnValue = false;
}
if (browser.isNS) {
event.preventDefault();
}
}
function zoominto_dragStop(event) {
if (browser.isIE) {
document.detachEvent(“onmousemove”, zoominto_dragGo);
document.detachEvent(“onmouseup”, zoominto_dragStop);
}
if (browser.isNS) {
document.removeEventListener(“mousemove”, zoominto_dragGo, true);
document.removeEventListener(“mouseup”, zoominto_dragStop, true);
}
}
function imgplayerprogress_DoFSCommand(command, args) {
var imgplayerprogressObj = isInternetExplorer ? document.all.imgplayerprogress : document.imgplayerprogress;
}
function zoominto_addElement(divIdName, htmlval) {
try {
var newdiv = document.createElement(“div”);
newdiv.setAttribute(“id”, divIdName);
newdiv.setAttribute(“title”, “”);
newdiv.style.position = “absolute”;
newdiv.style.display = “none”;
newdiv.innerHTML = htmlval;
document.body.appendChild(newdiv);;
} catch (e) {
}
}
function zoominto_addmyelems(divIdName, htmlval) {
try {
var newdiv = document.createElement(“div”);
newdiv.setAttribute(“id”, divIdName);
newdiv.innerHTML = htmlval;
document.body.appendChild(newdiv);;
} catch (e) {
//_L(e);
}
}
function zoominto_initializelements() {
zoominto_addElement(“plugpanel”, “ “);
zoominto_addmyelems(“plugincheck_0909″, ”
“);
}
function zoominto_GetElementPostion(theElement) {
var selectedPosX = 0;
var selectedPosY = 0;
tmpw = theElement.width;
tmph = theElement.height;
while (theElement != null) {
selectedPosX += theElement.offsetLeft;
selectedPosY += theElement.offsetTop;
theElement = theElement.offsetParent;
}
var tempelement = new Array(selectedPosX, selectedPosY, tmpw, tmph);
return tempelement;
}
function plugin_showdeadcenterdiv(Xwidth, Yheight, divid) {
var scrolledX, scrolledY;
if (self.pageYOffset) {
scrolledX = self.pageXOffset;
scrolledY = self.pageYOffset;
} else if (document.documentElement && document.documentElement.scrollTop) {
scrolledX = document.documentElement.scrollLeft;
scrolledY = document.documentElement.scrollTop;
} else if (document.body) {
scrolledX = document.body.scrollLeft;
scrolledY = document.body.scrollTop;
}
var centerX, centerY;
if (self.innerHeight) {
centerX = self.innerWidth;
centerY = self.innerHeight;
} else if (document.documentElement &&
document.documentElement.clientHeight) {
centerX = document.documentElement.clientWidth;
centerY = document.documentElement.clientHeight;
} else if (document.body) {
centerX = document.body.clientWidth;
centerY = document.body.clientHeight;
}
var leftOffset = scrolledX + (centerX – Xwidth) / 2;
var topOffset = scrolledY + (centerY – Yheight) / 2;
var o = document.getElementById(divid);
var r = o.style;
r.position = “absolute”;
r.top = topOffset + “px”;
r.left = leftOffset + “px”;
r.display = “block”;
}
function pluginalertShow(layerid) {
document.getElementById(layerid).style.visibility = “visible”;
document.getElementById(layerid).style.display = “block”;
plugin_showdeadcenterdiv(280, 115, layerid);
document.getElementById(“plugin_btn_activate”).focus();
}
function pluginalerthide(layerid) {
document.getElementById(layerid).style.visibility = “hidden”;
document.getElementById(layerid).style.display = “none”;
}
function zoom_getValidString(){
return “&isValidviewer=1″;// all things are valid
}
function zoominto_showflash(zoomres) {
try{
if(zoomres == undefined)
zoomres=”600×442”;
zoomarr=zoomres.split(“x”,2)
var divimgplayer = document.getElementById(“div_plugin_img_player”);
divimgplayer.style.display = “block”;
divimgplayer.style.visibility = “visible”;
//old movie 550 400
// plugin_showdeadcenterdiv(600, 371, “div_plugin_img_player”);
plugin_showdeadcenterdiv(parseInt(zoomarr[0]), parseInt(zoomarr[1])+120, “div_plugin_img_player”);
// zoominto_setImage();
zoominto_changeobject(document.getElementById(“plugpanel”).title,zoomres);
} catch (e) {
}
}
function zoominto_closeflash() {
var divimgplayer = document.getElementById(“div_plugin_img_player”);
divimgplayer.style.display = “none”;
divimgplayer.style.visibility = “hidden”;
}
function hidezoomicon(){
document.getElementById(“plugpanel”).style.visibility = “hidden”;
}
function getMouseX( e ) {
return e.pageX
|| ( e.clientX + ( document.documentElement.scrollLeft
|| document.body.scrollLeft ) );
}
function getMouseY( e ) {
return e.pageY
|| ( e.clientY + ( document.documentElement.scrollTop
|| document.body.scrollTop ) );
}
function dhtmlLoadScript(url)
{
var e = document.createElement(“script”);
e.src = url;
e.type=”text/javascript”;
// document.getElementByTagName(“head”)[0].appendChild(e);
document.getElementById(“addiv”).appendChild(e);
}
function getactualimgdimensions(imgsrc){
zoomintoheavyImage = new Image();
zoomintoheavyImage.src = imgsrc
var tempelement = new Array(zoomintoheavyImage.width, zoomintoheavyImage.height);
return tempelement;
}
function plugin_run() {
var newcss = “#div_plugin_img_player td {padding:0;} n #div_plugin_img_player th {padding:0;}”;
if (‘v’==’v’) /* ie only */ {
document.createStyleSheet().cssText = newcss;
} else {
var tag = document.createElement(‘style’); tag.type = ‘text/css’; document.getElementsByTagName(‘head’)[0].appendChild(tag);
tag[ (typeof document.body.style.WebkitAppearance==’string’) /* webkit only */ ? ‘innerText’ : ‘innerHTML’] = newcss;
}
var image = document.getElementsByTagName(“img”);
var totimgLength=image.length;
zoominto_initializelements();
for (var i = 0; i 50 && zoomarrdim[1] > 60) {
image[i].onmouseover = function () {imgvals = zoominto_GetElementPostion(this);
document.getElementById(“plugpanel”).style.display = “block”;document.getElementById(“plugpanel”).style.visibility = “visible”;document.getElementById(“plugpanel”).style.left = imgvals[0] + “px”;document.getElementById(“plugpanel”).style.top = imgvals[1] + “px”;document.getElementById(“plugpanel”).title = this.src;};
image[i].onmouseout = function (evt) {
imgvals = zoominto_GetElementPostion(this);
strx=imgvals[0];
stry=imgvals[1];
endx=imgvals[0] +imgvals[2] ;
endy=imgvals[1] + imgvals[3];
tmpcurx=evt.pageX;
tmpcury=evt.pageY;
if(tmpcurx > strx && tmpcurx stry && tmpcury < endy ){
l=1
}
else{
document.getElementById("plugpanel").style.visibility = "hidden";
}
};
}// End of Condition Image smaller
if(zoomarrdim[0] == 1 && zoomarrdim[1] == 1){
// remove Image element
image[i].style.display="none";
image[i].style.visibility="hidden";
}
}
}
function zoominto_URLEncode(clearString) {
var output = "";
var x = 0;
clearString = clearString.toString();
var regex = /(^[a-zA-Z0-9_.]*)/;
while (x 1 && match[1] != “”) {
output += match[1];
x += match[1].length;
} else {
if (clearString[x] == ” “) {
output += “+”;
} else {
var charCode = clearString.charCodeAt(x);
var hexVal = charCode.toString(16);
output += “%” + (hexVal.length < 2 ? "0" : "") + hexVal.toUpperCase();
}
x++;
}
}
return output;
}
function Closeiepluginpanel() {
closeflash();
}
function logme(txtstr) {
// try {
//alert(txtstr);
return "";
}
function zoominto_changeobject(url,zoomres) {
//Method to Display the Viewer for Image
imgName_bfr=(tmppluginimageURL +url + zoom_getValidString())
escimgName_bfr=escape(imgName_bfr);
trkval = "?chkme=" + imgName_bfr + "&rootstr=" + tmppluginServername;
pagetitle = "";
urlstr = zoominto_URLEncode(document.location);
zoomarr=zoomres.split("x",2)
playerwidth=parseInt(zoomarr[0]);// 800
tablewidth=playerwidth ;//-2 ;//798
playerheight=parseInt(zoomarr[1]);//600;
adwidth=468;//playerwidth -10 ;//768;
adheight=60;
document.getElementById("div_plugin_img_player").innerHTML = "
|
n”;
document.getElementById(‘resselect’).value=zoomres;
}
// ]]>
Ju Rezende
>Olá Tati.
Participar deste projeto é uma honra, principalmente depois da conversa que tivemos na reunião. Fiquei muito feliz com a perspectiva do projeto e o fato de participar dele me deixa orgulhosa.
Que 2012 seja infinitamente melhor que 2011!
E vamo que vamo.
Saulo Nardelli
>Espero participar mais ativamente do projeto em 2012 e que eu e a equipe da Távola, possamos dar toda a estrutura de comunicação necessária a este projeto tão importante para o crescimento do setor.
Estamos muito felizes com as metas alcançadas, parabéns à todos!
É um prazer fazer parte desta equipe!
Implantando Marketing
>Olá Ju e Saulo!
sei que poderei contar com vocês em 2012 e que nossas metas serão alcançadas! Obrigada pelo empenho e por fazerem parte dessa equipe brilhante!
abraço,
Tati.
Aline Roque
>O ano de 2011 pra mim foi de grandes realizações, tanto no âmbito pessoal quanto no profissional. Em julho assumi um grande desafio. Implantar um departamento de marketing em uma empresa de alta tecnologia que percebeu essa necessidade, mas até então não sabia por onde começar e confiou a mim essa missão. Ao aceitar e antes mesmo de começar minha trajetória, me empenhei ao máximo para estudar as melhores formas e práticas, para desempenhar um trabalho sério e com resultados mensuráveis para a empresa. Foi aí que encontrei o Implantando Marketing. Com o tempo passei a fazer parte da equipe, o que muito me orgulha, pois não estamos falando de pessoas distantes. Estamos falando de pessoas que compartilham desafios, experiências, dúvidas, alegrias… estamos falando de uma família que comemora, discute, discorda, concorda e que quando precisa se abraça e vai, numa só direção, rumo ao reconhecimento de que o marketing é peça fundamental para o sucesso de qualquer negócio.
Muito obrigada por me permitirem fazer parte desse time. Obrigada por todo o conhecimento que compartilhamos. Contem comigo para que 2012 seja ainda melhor. Um brinde ao nosso sucesso!
Anonymous
>Entrei recentemente no grupo e estou gostando muito de fazer parte do projeto.
Espero participar ativamente em 2012 .
abçs
@priscila_falchi
.
Marcos Moraes
>É com muito orgulho participar deste projeto e não só pela visibilidade que ele trás, mas o mais importante: sentir que uma classe tão desorganizada e que muitos realmente não sabem a importância do marketing dentro de uma empresa e outros segmentos, ganha força com iniciativas como esta. Parabêns Tati, parabéns aos nossos amigos parceiros. É uma honra estar neste projeto…muito sucesso a todos nós !!!
Tatiane Guest
>Ei Aline, Priscila e Marcos!
Obrigada pelas mensagens de ânimo e força porque é disso que precisamos e muito! O Projeto é sim uma família de pessoas muito capacitadas e começamos a profissionalizar esse negócio familiar eheheh!
Um grande abraço pra vocês e obrigada por fazerem parte da equipe!
Tati.
Deivid Silva
>O que mais poderia dizer depois de todos os comentários? :-) Implantando Marketing é sensacional!
Priscila Stuani
>Digamos que minha relacao com o projeto foi "amor a primeira vista". Achei atraves de pesquisa, salvei nos meus favoritos e passei a visitar diariamente (pois notei que era um blog muito bem atualizado com temas hiper relevantes).
Ate que um belo dia mandei e-mail falando que gostaria de fazer parte e fui muito bem acolhida!
Eh otimo contar c/ um time como o que faz parte desse projeto. Cada qual com suas habilidades e empenho, auxiliando o grupo em duvidas, encorajando aos demais, se comunicando… Dando "dicas" basicas e aportes para estrategias e acoes mais complexas.
Eu defendo e apoio esse projeto com todas minhas forcas porque me identifico com ele, meus principios estao de acordo com o do projeto!
Adoro a ideia de fazer parte do Implantando Marketing porque acredito que ninguem aqui esta de brincadeira, e vamos seguir rumo ao nosso objetivo.
Quem eh profissional de marketing nao pode ficar de fora! O projeto eh apaixonante! Quem conhece e tem visao de mercado simplesmente fica!
Agradeco as coordenadoras que regem o grupo sempre c/ muito carinho e atencao!
Aos colegas de projeto que sempre estao dispostos a ajudar!
E principalmente a Tati Guest pela oportunidade de fazer parte dessa familia! MUITO OBRIGADA por acreditar no Marketing e lutar intelentemente pela nossa classe, usando nossas proprias ferramentas para demonstrar a importancia que o mkt tem no mercado, nas empresas e para nos!
Forte abraco a todos!
Priscila Stuani
>*inteligentemente
Eliane Lages
>Oi Tati e pessoal,
Pelo visto 2011 foi um ano muito positivo para o projeto e para mim tb que tenho a oportunidade de fazer parte dessa equipe maravilhosa!
Gostaria de agradecer a Tatiane pela chance que ela me deu de participar de algo tão grandioso. Espero que em 2012 todos nós possamos estar cada vez mais unidos na luta para melhoria do marketing. Parabéns para todos nós!
Bjs, Eliane.
Tatiane Guest
>Olá Deivid, Pri Stuani e Eliane!
obrigada pelas mensagens de ânimo e agradecimentos e que venha 2012!
Abraço,
Tati.
Vanessa Alkmim
>A frase do Steve Jobs que compartilhei na última reunião diz bastante sobre o nosso projeto: “Cada sonho que você deixa para trás é um pedaço do seu futuro que deixa de existir”.
O Implantando Marketing foi um grande sonho inicialmente da Tati, mas aos poucos foi se tornando um sonho de cada um de nós. Se tivéssemos desistido nas primeiras dificuldades hoje não estaríamos aqui no Top 3 (rumo ao 1º lugar… rs).
Nos unimos, trabalhamos, lutamos e não desistimos dos nossos sonhos. O resultado está aqui e nosso futuro já é agora.
Um excelente 2012 para todos e que no próximo ano tenhamos ainda mais realizações.
Abraços,
Vanessa Alkmim
Claudia Lima
Boa Noite,Tati…gostei muito das suas matérias, Estou na fase final da minha pós graduação em Gestão deMarketing, sou graduada em Administração e estou precisando de uma orientação, pretendo implantar um departamento de marketing, em uma Industria de Couros Sintético, porém, preciso mostrar ao empresário o que posso oferecer, como e quais os resultados poderá alcançar com o departamento. Como pode me ajudar?