 body {

 <script language="JavaScript1.2">
<!--

//Open offsite links in new window option- By Jessica Hammer
//Heavily modified by Dynamic Drive
//Visit http://www.dynamicdrive.com for this script

//1)Enter domains to be EXCLUDED from opening in new window:
var excludedomains=["dynamicdrive.com", "javascriptkit.com"]

//2)Automatically open offsite links in new window? (1=yes, 0 will render a checkbox for manual selection)
var auto=1

var excludedomains=excludedomains.join("|")
rexcludedomains=new RegExp(excludedomains, "i")

if (!auto)
document.write('<form name="targetmain"><input type="checkbox" name="targetnew" checked onClick="dynamiclink()">Open off-site links in new window</form>')

function dynamiclink(){

if (auto||(!auto&&document.targetmain.targetnew.checked)){
for (i=0; i<=(document.links.length-1); i++) {
if (document.links[i].hostname.search(rexcludedomains)==-1&&document.links[i].href.indexOf("http:")!=-1)
document.links[i].target="_blank"
}
}
else
for (i=0; i<=(document.links.length-1); i++) {
if (document.links[i].hostname.indexOf(mydomain)==-1)
document.links[i].target=""
}
}

if (auto)
window.onload=dynamiclink

// -->
</script>

                 

 }


       /* Pseudo-classes */

       /* First Line Pseudo-element */ 
       p:first-line { margin-left: 25px } 
       /* First Line Pseudo-element */ 

       div.foo:first-line {
                 font-weight: bold;
                 margin-left: 30px } 
       div:first-letter {
                 font-size: x-large; 
                 color: #ffffff } 
       ul ul li {
                 font-size: x-large; 
                 font-decoration: italic } 
       h2 em { font-weight: 900 } 
       
       .funkyclass {
                 font: 36pt/40pt courier;
                 font-variant: small-caps;
                 border: thick dashed blue } 
       #tagid1 {
                 padding: 20px; 
                 border: 20px groove #ffffff } 
       .class1, #tagid2 { font-family: 'comic sans ms', fantasy; color: rgb(100%,100%,0%) } 
       h1, h2, div.class5
       p.special {
                 font: 12pt/14pt sans-serif;
                 margin: 5px 0px 2px 25px;
                 border: medium dashed #ff0000;
                 background: white url(http://www.foo.com/image.gif) repeat-x fixed top right } 
       blockquote {
                 margin-left: 2cm; 
                 color: #00ff00 } 
       .part1 {
                 font-size: xx-large; 
                 color: #808000 } 
       h6 {
                 font-size: xx-small ! important;
                 color: red ! important } 
