<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>

<channel>
	<title>Sheeze Domain &#187; Advanced Code</title>
	<atom:link href="http://www.sheezedomain.com/channel/webmaster-tutorials/advanced-code/feed" rel="self" type="application/rss+xml" />
	<link>http://www.sheezedomain.com</link>
	<description>We are providers of web hosting services, domain names, and email solutions for personal and business websites. Services include Linux and Microsoft hosting, domain registrations, ecommerce hosting, dedicated servers, virtual servers, file hosting, photo hosting, email hosting, website builders, security solutions, and more.</description>
	<pubDate>Mon, 22 Mar 2010 20:45:12 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Make this page your start page code</title>
		<link>http://www.sheezedomain.com/make-this-page-your-start-page-code.html</link>
		<comments>http://www.sheezedomain.com/make-this-page-your-start-page-code.html#comments</comments>
		<pubDate>Fri, 09 Mar 2001 18:32:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Advanced Code]]></category>

		<category><![CDATA[code]]></category>

		<category><![CDATA[links]]></category>

		<category><![CDATA[webmaster]]></category>

		<category><![CDATA[WebSite]]></category>

		<guid isPermaLink="false">http://www.sheezedomain.com/?p=410</guid>
		<description><![CDATA[Want an option for visitors to make your page their start page?
Place this code where you would like the link to appear on your site and change yourdomain to your domain name. Only works with Internet Explorer browser.

&#60;!-- Start Make Homepage Code --&#62;
&#60;!--[if IE]&#62;
&#60;a HREF onClick="this.style.behavior='url(#default#homepage)';this.setHomePage('http://www.yourdomain.com');"&#62;Click here to make this site your start page!&#60;/a&#62;&#60;/font&#62;
&#60;![endif]--&#62;
&#60;!-- End Make Homepage Code --&#62; 

]]></description>
		<wfw:commentRss>http://www.sheezedomain.com/make-this-page-your-start-page-code.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Add To Your Favorites Link</title>
		<link>http://www.sheezedomain.com/add-to-your-favorites-link.html</link>
		<comments>http://www.sheezedomain.com/add-to-your-favorites-link.html#comments</comments>
		<pubDate>Fri, 09 Mar 2001 18:30:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Advanced Code]]></category>

		<category><![CDATA[code]]></category>

		<category><![CDATA[links]]></category>

		<category><![CDATA[WebSite]]></category>

		<guid isPermaLink="false">http://www.sheezedomain.com/?p=408</guid>
		<description><![CDATA[Add this code to your page and when clicked it will help others to add your site to their favorites list.
Place this code into the head of your page:

&#60;script language="JavaScript"&#62;
function bookmark(url, description)
{
netscape="Netscape User's hit CTRL+D to add a bookmark to this site."
if (navigator.appName=='Microsoft Internet Explorer')
{
window.external.AddFavorite(url, description);
}
else if (navigator.appName=='Netscape')
{
alert(netscape);
}
}
//--&#62;
&#60;/SCRIPT&#62; 

Place this in your body of your page where you want the link to appear:

&#60;a href="javascript:bookmark('http://www.yourdomain.com','Name of your site');"&#62;Click here to add this site to your favorites list!&#60;/A&#62; 

]]></description>
		<wfw:commentRss>http://www.sheezedomain.com/add-to-your-favorites-link.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Colored Scrollbars</title>
		<link>http://www.sheezedomain.com/colored-scrollbars.html</link>
		<comments>http://www.sheezedomain.com/colored-scrollbars.html#comments</comments>
		<pubDate>Fri, 09 Mar 2001 18:28:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Advanced Code]]></category>

		<category><![CDATA[code]]></category>

		<category><![CDATA[WebSite]]></category>

		<guid isPermaLink="false">http://www.sheezedomain.com/?p=406</guid>
		<description><![CDATA[Add this to your css style sheet or if you don&#8217;t have one you can add it to your head tags.
Change the colors to that of your own likings.

BODY
{
scrollbar-arrow-color: #FFFFFF;
scrollbar-track-color: #FFFFFF;
scrollbar-face-color: #444444;
scrollbar-highlight-color: #FFFFFF;
scrollbar-3dlight-color: #000000;
scrollbar-darkshadow-color: #000000;
scrollbar-shadow-color: #444444;
} 

]]></description>
		<wfw:commentRss>http://www.sheezedomain.com/colored-scrollbars.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Graphic Hovering Effect On Links</title>
		<link>http://www.sheezedomain.com/graphic-hovering-effect-on-links.html</link>
		<comments>http://www.sheezedomain.com/graphic-hovering-effect-on-links.html#comments</comments>
		<pubDate>Fri, 09 Mar 2001 18:26:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Advanced Code]]></category>

		<category><![CDATA[code]]></category>

		<category><![CDATA[links]]></category>

		<category><![CDATA[webmaster]]></category>

		<category><![CDATA[WebSite]]></category>

		<guid isPermaLink="false">http://www.sheezedomain.com/?p=404</guid>
		<description><![CDATA[When you mouse over links in our forums you will see a graphical hovering effect. Here is the code to get this same results on your website.
Code:

a:hover, a:active { background: url(http://www.yourdomain.com/images/yourgraphic.gif); } 

You must replace yourdomain with your own website address.
You must have a graphic to use for the hovering effect and change the path to [...]]]></description>
		<wfw:commentRss>http://www.sheezedomain.com/graphic-hovering-effect-on-links.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Shakey Images</title>
		<link>http://www.sheezedomain.com/shakey-images.html</link>
		<comments>http://www.sheezedomain.com/shakey-images.html#comments</comments>
		<pubDate>Fri, 09 Mar 2001 18:22:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Advanced Code]]></category>

		<category><![CDATA[code]]></category>

		<category><![CDATA[images]]></category>

		<category><![CDATA[WebSite]]></category>

		<guid isPermaLink="false">http://www.sheezedomain.com/?p=402</guid>
		<description><![CDATA[This code will make an image shake when you hover over it with your mouse.
Place this into the head of your webpage:

&#60;style&#62;
.shakeimage{
position:relative
}
&#60;/style&#62;
&#60;script language="JavaScript1.2"&#62;

/*
Shake image script (onMouseover)-
© Dynamic Drive (www.dynamicdrive.com)
For full source code, usage terms, and 100's more DHTML scripts, visit http://dynamicdrive.com
*/

//configure shake degree (where larger # equals greater shake)
var rector=3

///////DONE EDITTING///////////
var stopit=0
var a=1

function init(which){
stopit=0
shake=which
shake.style.left=0
shake.style.top=0
}

function rattleimage(){
if ((!document.all&#38;&#38;!document.getElementById)&#124;&#124;stopit==1)
return
if (a==1){
shake.style.top=parseInt(shake.style.top)+rector
}
else if (a==2){
shake.style.left=parseInt(shake.style.left)+rector
}
else if (a==3){
shake.style.top=parseInt(shake.style.top)-rector
}
else{
shake.style.left=parseInt(shake.style.left)-rector
}
if (a&#60;4)
a++
else
a=1
setTimeout("rattleimage()",50)
}

function stoprattle(which){
stopit=1
which.style.left=0
which.style.top=0
}

&#60;/script&#62; 

Place this where you want your shakable image to appear and replace the image url to that of your own:

&#60;img src="http://www.yourdomain.com/imagepath/imagename" class="shakeimage" onMouseover="init(this);rattleimage()" onMouseout="stoprattle(this);top.focus()" onClick="top.focus()"&#62; 

]]></description>
		<wfw:commentRss>http://www.sheezedomain.com/shakey-images.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>No Right Click On Images Only</title>
		<link>http://www.sheezedomain.com/no-right-click-on-images-only.html</link>
		<comments>http://www.sheezedomain.com/no-right-click-on-images-only.html#comments</comments>
		<pubDate>Fri, 09 Mar 2001 18:17:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Advanced Code]]></category>

		<category><![CDATA[code]]></category>

		<category><![CDATA[images]]></category>

		<category><![CDATA[WebSite]]></category>

		<guid isPermaLink="false">http://www.sheezedomain.com/?p=400</guid>
		<description><![CDATA[Don&#8217;t want visitors to be able to right click on your images?
Paste this into the head of your webpage:

&#60;script language="JavaScript1.2"&#62;

/*
Disable right click script II (on images)- By Dynamicdrive.com
For full source, Terms of service, and 100s DTHML scripts
Visit http://www.dynamicdrive.com
*/

var clickmessage="Right click disabled on images!"

function disableclick(e) {
if (document.all) {
if (event.button==2&#124;&#124;event.button==3) {
if (event.srcElement.tagName=="IMG"){
alert(clickmessage);
return false;
}
}
}
else if (document.layers) {
if (e.which == 3) {
alert(clickmessage);
return false;
}
}
else if (document.getElementById){
if (e.which==3&#38;&#38;e.target.tagName=="IMG"){
alert(clickmessage)
return false
}
}
}

function associateimages(){
for(i=0;i&#60;document.images.length;i++)
document.images[i].onmousedown=disableclick;
}

if (document.all)
document.onmousedown=disableclick
else if (document.getElementById)
document.onmouseup=disableclick
else if (document.layers)
associateimages()
&#60;/script&#62; 

]]></description>
		<wfw:commentRss>http://www.sheezedomain.com/no-right-click-on-images-only.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>No Right Click Without A Warning</title>
		<link>http://www.sheezedomain.com/no-right-click-without-a-warning.html</link>
		<comments>http://www.sheezedomain.com/no-right-click-without-a-warning.html#comments</comments>
		<pubDate>Fri, 09 Mar 2001 18:00:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Advanced Code]]></category>

		<category><![CDATA[code]]></category>

		<category><![CDATA[webmaster]]></category>

		<category><![CDATA[WebSite]]></category>

		<guid isPermaLink="false">http://www.sheezedomain.com/?p=398</guid>
		<description><![CDATA[Don&#8217;t want visitors to be able to right click on your page yet you don&#8217;t like giving them a popup warning either?
Paste this code into the head of your webpage:

&#60;script language=JavaScript&#62;
&#60;!--

//Disable right click script III- By Renigade (    \n   
 &#60;!--
 var prefix = '&#38;#109;a' + 'i&#38;#108;' + '&#38;#116;o';
 var path = 'hr' + 'ef' + '=';
 var [...]]]></description>
		<wfw:commentRss>http://www.sheezedomain.com/no-right-click-without-a-warning.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>No Right Clicking With Warning</title>
		<link>http://www.sheezedomain.com/no-right-clicking-with-warning.html</link>
		<comments>http://www.sheezedomain.com/no-right-clicking-with-warning.html#comments</comments>
		<pubDate>Fri, 09 Mar 2001 17:59:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Advanced Code]]></category>

		<category><![CDATA[code]]></category>

		<category><![CDATA[webmaster]]></category>

		<category><![CDATA[WebSite]]></category>

		<guid isPermaLink="false">http://www.sheezedomain.com/?p=396</guid>
		<description><![CDATA[Don&#8217;t want people to be able to right click on your page and want to warn them so? Paste this code into the head of your page.
Place this into the head of your page:

&#60;script language="JavaScript"&#62; &#60;!--

// No rightclick script v.2.5

// (c) 1998 barts1000

//     \n   
 &#60;!--
 var prefix = '&#38;#109;a' + 'i&#38;#108;' + '&#38;#116;o';
 var path = 'hr' + [...]]]></description>
		<wfw:commentRss>http://www.sheezedomain.com/no-right-clicking-with-warning.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Highlight Image</title>
		<link>http://www.sheezedomain.com/highlight-image.html</link>
		<comments>http://www.sheezedomain.com/highlight-image.html#comments</comments>
		<pubDate>Fri, 09 Mar 2001 17:56:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Advanced Code]]></category>

		<category><![CDATA[code]]></category>

		<category><![CDATA[images]]></category>

		<category><![CDATA[WebSite]]></category>

		<guid isPermaLink="false">http://www.sheezedomain.com/?p=394</guid>
		<description><![CDATA[This script will turn your image to grey and then when you hover over it with your cursor it will turn back to it&#8217;s color.
Place this code into the head of your page:
&#60;script language="JavaScript1.2"&#62;

 //Gradual-Highlight image script- By Dynamic Drive
 //For full source code and more DHTML scripts, visit http://www.dynamicdrive.com
 //This credit MUST stay intact for use

 function high(which2){
 theobject=which2
 highlighting=setInterval("highlightit(theobject)",50)
 }
 function low(which2){
 clearInterval(highlighting)
 if (which2.style.MozOpacity)
 which2.style.MozOpacity=0.3
 else if (which2.filters)
 which2.filters.alpha.opacity=30
 }

 function highlightit(cur2){
 if (cur2.style.MozOpacity&#60;1)
 cur2.style.MozOpacity=parseFloat(cur2.style.MozOpacity)+0.1
 else if (cur2.filters&#38;&#38;cur2.filters.alpha.opacity&#60;100)
 cur2.filters.alpha.opacity+=10
 else if (window.highlighting)
 clearInterval(highlighting)
 }

 &#60;/script&#62;
Use this code to link up your images. Just change the domain to your&#8217;s and the file name to that of your image [...]]]></description>
		<wfw:commentRss>http://www.sheezedomain.com/highlight-image.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Drag Images</title>
		<link>http://www.sheezedomain.com/drag-images.html</link>
		<comments>http://www.sheezedomain.com/drag-images.html#comments</comments>
		<pubDate>Fri, 09 Mar 2001 17:53:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Advanced Code]]></category>

		<category><![CDATA[code]]></category>

		<category><![CDATA[images]]></category>

		<category><![CDATA[WebSite]]></category>

		<guid isPermaLink="false">http://www.sheezedomain.com/?p=392</guid>
		<description><![CDATA[This code works great for puzzles or image makers.
Place this in the head of your page:

&#60;style&#62;
&#60;!--
.drag{position:relative;cursor:hand}
--&#62;
&#60;/style&#62;
&#60;script language="JavaScript1.2"&#62;
&#60;!--

//Generic Drag Script- © Dynamic Drive (www.dynamicdrive.com)
//For full source code and terms of usage,
//visit http://www.dynamicdrive.com

var ie=document.all
var ns6=document.getElementById&#38;&#38;!document.all

var dragapproved=false
var z,x,y

function move(e){
if (dragapproved){
z.style.left=ns6? temp1+e.clientX-x: temp1+event.clientX-x
z.style.top=ns6? temp2+e.clientY-y : temp2+event.clientY-y
return false
}
}

function drags(e){
if (!ie&#38;&#38;!ns6)
return
var firedobj=ns6? e.target : event.srcElement
var topelement=ns6? "HTML" : "BODY"

while (firedobj.tagName!=topelement&#38;&#38;firedobj.className!="drag"){
firedobj=ns6? firedobj.parentNode : firedobj.parentElement
}

if (firedobj.className=="drag"){
dragapproved=true
z=firedobj
temp1=parseInt(z.style.left+0)
temp2=parseInt(z.style.top+0)
x=ns6? e.clientX: event.clientX
y=ns6? e.clientY: event.clientY
document.onmousemove=move
return false
}
}
document.onmousedown=drags
document.onmouseup=new Function("dragapproved=false")
//--&#62;
&#60;/script&#62; 

Use this code to link your images you would like to [...]]]></description>
		<wfw:commentRss>http://www.sheezedomain.com/drag-images.html/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
