You are currently viewing
"ADRENALYN WEB MARKETING".
Explore our web design in
"ADRENALYN WEB DESIGN "


READ OUR ARTICLES ABOUT
SEARCH ENGINE MARKETING!

--------------

Keywords

How to choose keywords

Keyword prominence

SEO

The factors that play a role in
your web site's ranking

Optimised web-design

Content layering

Search engines strategies

Optimized body description

Content is king

Invisible text

Comment tag optimisation

Meta tag optimization

Title tag optimisation

Hyperlink
URL tag optimisation

Alt tag optimisation

Getting your
PDF indexed

Alternative traffic
promotion techniques

Copywriting

Home page
design tips

Creating effective
body descriptions

Writing content:
focus on your target audience!

Content is king

Writing a business
website homepage

Actractive web page titles

Links

Linking tips

Linking strategies

Trading links

Link popularity development

Website's linking architecture

Automated linking software

16 rules for a good
link exchange request

Pay per click

 

Pay-per-click:
how to increase the
click-through-rate

Pay-per-click: PPC strategies

SEO versus PPC

Pay-per-click: PPC campaigns

Pay-per-click: Landing pages (1)

Pay-per-click: Landing pages (2)

Pay-per-click: PPC management

Pay-per-click search engines list

Pay-per-click:
how to avoid click fraud

How to improve effectiveness in PPC

Pay-per-click:
How to chose keywords

Pay-per-click:
Google AdWords

Pay-per-click:
Google AdWords account structure

Pay-per-click:
Yahoo Search Marketing (SM)

Yahoo SM versus
Google AdWords

Domain names

Domain name strategies

Domain registration rules

Country top domain level - TDL

Semantic Technologies

CIRCA technology:
applied semantics to search engines

Latent semantic indexing (LSI)

Block-level link analysis

Email Marketing

Real simple syndication (RSS)

Google

Google "jagger" update

Google quality score

Google "link" command

Google's ranking algorithm
part 1/4

Google's ranking algorithm
part 2/4

Google's ranking algorithm
part 3/4

Google's ranking algorithm
part 4/4

Google's original patent:
how Google works

Google's page rank

Google's sandbox:
delayed inclusion of new websites

Google's penalties:
getting penalized

Google's sitemap service

Google's search page

search engines

How search engines evaluate relevancy when ranking search results

How to be informed when a search
engine spider visits your site

How to instruct spiders with head-tags

How to prevent duplicate content

How search engines work

Australian search engines list

World major search engine list

Web searchers' behaviour:
shocking web users' statistics

Listing expectations:
how much better is ranking
No. 1 versus No. 10?

web marketing

Online media planning

Seven reasons why customers don't buy

The 7 most common marketing mistakes

12 ways to exceed your client's expectations every time!

Market reseach for new online business

How to set up your best customer profile

Web Marketing Plan

12 tips to build a new SEO Career

How to market your website:
five keys to web site marketing success

How to market your website:
the five web marketing laws

How to market your website:
miscellaneous marketing strategies

How to market your website: a mixed marketing media approach

miscellaneous

Site defacements

Link in a new window

Are you cross-browser compatible?
Learn how to do it

Javascript to let visitors
bookmark your website

Why your web pages don't
load fast enough

Javascript to open a
link in a new window

Hexadecimal

Hexadecimal color codes

Decimal RGB color codes

 

How to open a link in a new window

Here is an easy way to open a browser in a new window with JavaScript. You might find it convenient to use something like the "target" attribute; however, this attribute is deprecated and shouldn't be used. Unlike the target attribute, you can specify the width and height of the window you are opening using the following method.

Click here to open the child window

Here is the code of the above link

<a href="javascript:void(0);"
NAME="My Window Name" title=" My title here "
onClick=window.open("window-child.html","Ratting","width=550,height=170,0,status=0,");>Click here to open the child window</a>


Here is a button to open the same window



Here is the code of this button

<input type=button onClick=window.open("window-child.html","Ratting","width=550,
height=170,left=150,top=200,toolbar=0,status=0,"); value="Open Window">

Customize the Script for Your Site:

Replace "Mt title here" with the titleu want on the window

In the code above, you will notice that there is a URL defined as "window-child.htm Replace that URL with the address of the page that you would like to open.

You will notice width=550. Replace "550" with the width size, in pixels, that you would like the new window to be.

height=170 As with the width, you can set the height of the new window here by replacing the "170" with your desired height.

Replace "Click here to open the child window" with the text that you would like your visitors to click on in order to open the new window.

Once the code is edited, you can place it anywhere in the body of your webpage. This code can be very helpful if you want to open a small window for something such as an image gallery.

You can also add any of therse tokens/ commands after " status, "

The table shows the features and the string tokens you can use:

status The status bar at the bottom of the window.
toolbar The standard browser toolbar, with buttons such as Back and Forward.
location The Location entry field where you enter the URL.
menubar The menu bar of the window
directories The standard browser directory buttons, such as What's New and What's Cool
resizable Allow/Disallow the user to resize the window.
scrollbars Enable the scrollbars if the document is bigger than the window
height Specifies the height of the window in pixels. (example: height='350')
width Specifies the width of the window in pixels.

For example if you want to add scrollbars the script will look like this

("window-child.html","Ratting","width=550,
height=170,left=150,top=200,toolbar=0,status=0,scrollbars,")