<!--markW = 90;       // pixels widemarkH = 40;       // pixels highmarkX = 99;      // percent rightmarkY = 99;      // percent downmarkRefresh = 50; // millisecondsif (!document.all) document.all = document;if (!document.all.MarcaDeAgua.style) document.all.MarcaDeAgua.style = document.all.MarcaDeAgua;wMark = document.all.MarcaDeAgua.style;wMark.width = markW;wMark.height = markH;navDOM = window.innerHeight;  function setVals() { barW = 0; // para PC  barH = 0; if (navDOM) {  if (document.height > innerHeight) barW = 20;  if (document.width > innerWidth) barH = 20;  } else {  innerWidth = document.body.clientWidth;  innerHeight = document.body.clientHeight;  } posX = ((innerWidth - markW)-barW) * (markX/108); posY = ((innerHeight - markH)-barH) * (markY/100); }function wRefresh() { wMark.left = posX + (navDOM?pageXOffset:document.body.scrollLeft); wMark.top = posY + (navDOM?pageYOffset:document.body.scrollTop); }function markMe() { setVals(); window.onresize=setVals; markID = setInterval ("wRefresh()",markRefresh); }window.onload=markMe; //-->
