<!-- Begin

// NOTE: If you use a ' add a slash before it like this \'


var sidewidth		= "150"		// SIDEBAR WIDTH (also edit CSS)
var pageheight		= "125"		// INCREASE PAGE HEIGHT

var notes1		= "yes"		// SHOW 1ST NOTES
var notes2		= "no"		// SHOW 2ND NOTES

// TEMPLATE DATE

var showd		= "yes"  	// SHOW THE DATE
var dateLR		= "right"  	// DATE LEFT OR RIGHT
var dateX		= "25"  	// DATE X LOCATION
var dateY		= "175"  	// DATE Y LOCATION


// FLASH CHANGER OPTIONS

var showsflash		= "yes"		// SHOW FLASH IMAGE CHANGER
var flashcolor		= "D2D1CC"	// FLASH BACKGROUND COLOR
var flashwC		= "150"		// WIDTH OF THE FLASH CHANGER
var flashhC		= "125"		// HEIGHT OF THE FLASH CHANGER
var bordercolor		= "A49C98"	// FLASH CHANGER BOTTOM BORDER COLOR

// SHOW SCROLLING NEWS
var shownewsbox     ="yes"  //SHOW SCROLLING NEWS BOX


<!-- Begin


<!-- NOTE: If you use a ' add a slash before it like this \' -->

document.write('<BR>');

document.write('<span class="phonetitle">');

document.write('Twisted Twin');

document.write('</span><br>');

document.write('72447 M43<br>');

document.write(' South Haven, MI 49090<br>');

document.write('PHONE: <span class="phonetitle">269.637.3395<BR></span>');

document.write('FAX: &nbsp;&nbsp;<span class="phonetitle">269.639.7175<BR></span>');

document.write('<BR>E-mail us: ');

document.write(' <A HREF="mailto:twistedtwin@i2k.com">twistedtwin@i2k.com</a><br>');

document.write('<BR>');

//  End -->


// FLASH CHANGER
   if (showsflash == "yes") {
document.write('<TABLE cellpadding="0" cellspacing="0" border="0" style="border-bottom: #'+bordercolor+' 1px solid;"><tr><td valign="top">');
document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="'+flashwC+'" HEIGHT="'+flashhC+'" id="imagechanger">');
document.write('<PARAM NAME="movie" VALUE="imagechanger.swf">');
document.write('<PARAM NAME="quality" VALUE="high">');
document.write('<PARAM NAME="bgcolor" VALUE="#'+flashcolor+'">');
document.write('<EMBED src="imagechanger.swf" quality="high" bgcolor="#'+flashcolor+'"  WIDTH="'+flashwC+'" HEIGHT="'+flashhC+'" NAME="imagechanger" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED></OBJECT><br>');
document.write('</td></tr></table>');
document.write('<br>');
}







// SAMPLE SCROLLING NEWS FOR A .JS FILE - NON-FLOATING
if (shownewsbox == "yes") {
document.write('<table cellpadding="2" cellspacing="0" border="0" style="border: #996600 1px solid; background-color: #F0F0F0;COLOR: #993366; FONT: 13px arial, sans-serif; font-weight: bold;"><tr><td align="center">');
document.write('Twisted Twin<br>');
document.write('</td></tr><tr><td>');
document.write('<iframe id="NewsWindow" src="news_win.htm" width="150" height="200" marginwidth="0" marginheight="0" frameborder="0" scrolling="no" style="border: #000000 1px solid;"></iframe>');
document.write('</td></tr></table>');
document.write('<br>');

}

// END NEWS SCROLLER




// 1st NOTES AREA
   if (notes1 == "yes") {
document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="90%"><tr><td align="left" class="note-title">');

document.write('ATTENTION!<br>');

document.write('</td></tr><tr><td class="note-text">');

document.write('We are updating our site. If you have any ideas please let us know!<br>');

document.write('<br><a href="contact.htm">Contact Us &gt;&gt;</a><br>');

document.write('</td></tr></table>');
document.write('<br><br>');
}











// 2nd NOTES AREA
   if (notes2 == "yes") {
document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="90%"><tr><td align="left" class="note-title">');

document.write('Notes Area<br>');

document.write('</td></tr><tr><td class="note-text">');

document.write('Edit this area with your own text and links. This text is in the global sidebar.js. Edit this file in a text editor to update all pages at one time.<br>');

document.write('<br><a href="contact.htm">Sample link &gt;&gt;</a><br>');

document.write('</td></tr></table>');
document.write('<br><br>');
}







// START DATE SCRIPT


   if (showd == "yes") {
document.write('<div id="date-location" style="'+dateLR+': '+dateX+'px; POSITION: absolute; TOP: '+dateY+'px" class="printhide">');
var d=new Date()
var weekday=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
var monthname=new Array("January","February","March","April","May","June","July","August","September","October","November","December")
document.write("<span class=\"date-font\"><nobr>" + weekday[d.getDay()] + " ")
document.write(monthname[d.getMonth()] + " ")
document.write(d.getDate() + ". ")
document.write(d.getFullYear())
document.write("</nobr><br></span>")
document.write('</div>');
}



document.write('<img src="picts/spacer.gif" width="'+sidewidth+'" height="'+pageheight+'"></a><br>');


//  End -->
