PC Review


Reply
Thread Tools Rate Thread

Do I have to have this stuff at the top of every page?

 
 
=?Utf-8?B?U3VzaWU=?=
Guest
Posts: n/a
 
      10th Apr 2006
Hi, this is in the code at the top part of every page I have created, can I
take it out? Also, isnt there a code to put in for google to spider my
descriptions first? Thanks!

-->
</style>
<script language="JavaScript">
<!--
function FP_swapImg() {//v1.0
var doc=document,args=arguments,elm,n; doc.$imgSwaps=new Array(); for(n=2;
n<args.length;
n+=2) { elm=FP_getObjectByID(args[n]); if(elm) {
doc.$imgSwaps[doc.$imgSwaps.length]=elm;
elm.$src=elm.src; elm.src=args[n+1]; } }
}

function FP_preloadImgs() {//v1.0
var d=document,a=arguments; if(!d.FP_imgs) d.FP_imgs=new Array();
for(var i=0; i<a.length; i++) { d.FP_imgs[i]=new Image;
d.FP_imgs[i].src=a[i]; }
}

function FP_getObjectByID(id,o) {//v1.0
var c,el,els,f,m,n; if(!o)o=document; if(o.getElementById)
el=o.getElementById(id);
else if(o.layers) c=o.layers; else if(o.all) el=o.all[id]; if(el) return el;
if(o.id==id || o.name==id) return o; if(o.childNodes) c=o.childNodes; if(c)
for(n=0; n<c.length; n++) { el=FP_getObjectByID(id,c[n]); if(el) return el; }
f=o.forms; if(f) for(n=0; n<f.length; n++) { els=f[n].elements;
for(m=0; m<els.length; m++){ el=FP_getObjectByID(id,els[n]); if(el) return
el; } }
return null;
}
// -->
</script>
</head>
 
Reply With Quote
 
 
 
 
Stefan B Rusynko
Guest
Posts: n/a
 
      11th Apr 2006
It is added because you are using Interactive buttons (or Image swap behaviors)
- you can only remove it of you remove the objects in the page using the behavior

Search engines ignore scripts

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.frontpagemvps.com/FrontPa...3/Default.aspx
_____________________________________________


"Susie" <(E-Mail Removed)> wrote in message news:9BC3CBD6-8865-42CF-82EC-(E-Mail Removed)...
| Hi, this is in the code at the top part of every page I have created, can I
| take it out? Also, isnt there a code to put in for google to spider my
| descriptions first? Thanks!
|
| -->
| </style>
| <script language="JavaScript">
| <!--
| function FP_swapImg() {//v1.0
| var doc=document,args=arguments,elm,n; doc.$imgSwaps=new Array(); for(n=2;
| n<args.length;
| n+=2) { elm=FP_getObjectByID(args[n]); if(elm) {
| doc.$imgSwaps[doc.$imgSwaps.length]=elm;
| elm.$src=elm.src; elm.src=args[n+1]; } }
| }
|
| function FP_preloadImgs() {//v1.0
| var d=document,a=arguments; if(!d.FP_imgs) d.FP_imgs=new Array();
| for(var i=0; i<a.length; i++) { d.FP_imgs[i]=new Image;
| d.FP_imgs[i].src=a[i]; }
| }
|
| function FP_getObjectByID(id,o) {//v1.0
| var c,el,els,f,m,n; if(!o)o=document; if(o.getElementById)
| el=o.getElementById(id);
| else if(o.layers) c=o.layers; else if(o.all) el=o.all[id]; if(el) return el;
| if(o.id==id || o.name==id) return o; if(o.childNodes) c=o.childNodes; if(c)
| for(n=0; n<c.length; n++) { el=FP_getObjectByID(id,c[n]); if(el) return el; }
| f=o.forms; if(f) for(n=0; n<f.length; n++) { els=f[n].elements;
| for(m=0; m<els.length; m++){ el=FP_getObjectByID(id,els[n]); if(el) return
| el; } }
| return null;
| }
| // -->
| </script>
| </head>


 
Reply With Quote
 
=?Utf-8?B?U3VzaWU=?=
Guest
Posts: n/a
 
      11th Apr 2006
I am using 2 simple text buttons that when clicked you go back to home, or
the gallery, doesnt everyone have to use buttons?
I am confused about image swap, I just have the pictures I have inserted,
they are in their own folder in the folder for the site. Could I be doing
something wrong?

"Stefan B Rusynko" wrote:

> It is added because you are using Interactive buttons (or Image swap behaviors)
> - you can only remove it of you remove the objects in the page using the behavior
>
> Search engines ignore scripts
>
> --
>
> _____________________________________________
> SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
> "Warning - Using the F1 Key will not break anything!" (-;
> To find the best Newsgroup for FrontPage support see:
> http://www.frontpagemvps.com/FrontPa...3/Default.aspx
> _____________________________________________
>
>
> "Susie" <(E-Mail Removed)> wrote in message news:9BC3CBD6-8865-42CF-82EC-(E-Mail Removed)...
> | Hi, this is in the code at the top part of every page I have created, can I
> | take it out? Also, isnt there a code to put in for google to spider my
> | descriptions first? Thanks!
> |
> | -->
> | </style>
> | <script language="JavaScript">
> | <!--
> | function FP_swapImg() {//v1.0
> | var doc=document,args=arguments,elm,n; doc.$imgSwaps=new Array(); for(n=2;
> | n<args.length;
> | n+=2) { elm=FP_getObjectByID(args[n]); if(elm) {
> | doc.$imgSwaps[doc.$imgSwaps.length]=elm;
> | elm.$src=elm.src; elm.src=args[n+1]; } }
> | }
> |
> | function FP_preloadImgs() {//v1.0
> | var d=document,a=arguments; if(!d.FP_imgs) d.FP_imgs=new Array();
> | for(var i=0; i<a.length; i++) { d.FP_imgs[i]=new Image;
> | d.FP_imgs[i].src=a[i]; }
> | }
> |
> | function FP_getObjectByID(id,o) {//v1.0
> | var c,el,els,f,m,n; if(!o)o=document; if(o.getElementById)
> | el=o.getElementById(id);
> | else if(o.layers) c=o.layers; else if(o.all) el=o.all[id]; if(el) return el;
> | if(o.id==id || o.name==id) return o; if(o.childNodes) c=o.childNodes; if(c)
> | for(n=0; n<c.length; n++) { el=FP_getObjectByID(id,c[n]); if(el) return el; }
> | f=o.forms; if(f) for(n=0; n<f.length; n++) { els=f[n].elements;
> | for(m=0; m<els.length; m++){ el=FP_getObjectByID(id,els[n]); if(el) return
> | el; } }
> | return null;
> | }
> | // -->
> | </script>
> | </head>
>
>
>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
FP 2003 no longer retains RECENT stuff, (lpage and site history), lost of Options and Page options, Settings. etc... Alvaro Guevara Microsoft Frontpage 8 26th May 2007 01:31 AM
Home page hijacked - about:blank - No Anti-Stuff works! =?Utf-8?B?RG9uUw==?= Windows XP Internet Explorer 5 29th Jun 2004 01:48 AM
Printing the same stuff on the second half of the page Fiaz Idris Microsoft Access Reports 7 1st May 2004 02:58 PM
view source well i got it to open but i cant save stuff after i change stuff =?Utf-8?B?Y3JpczEyM2xw?= Windows XP Internet Explorer 2 20th Feb 2004 02:34 PM
printed page has black glue like stuff on left side of page? PeterM Printers 3 13th Jan 2004 02:05 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 10:59 PM.