
<!--
if (document.images) {

	image9on = new Image();
	image9on.src="./images-old/tddf.gif";

	image10on = new Image();
	image10on.src="./images-old/nddf.gif";

	image11on = new Image();
	image11on.src="./images-old/cddf.gif";


	image9off = new Image();
	image9off.src="./images-old/tddlogo.jpg";

	image10off = new Image();
	image10off.src="./images-old/nddlogo.jpg";

	image11off = new Image();
	image11off.src="./images-old/cddlogo.jpg";

}

function ChangeImages() {
	if (document.images) {
		for (var i=0; i<ChangeImages.arguments.length; i+=2) {
			document [ChangeImages.arguments[i]].src = eval(ChangeImages.arguments[i+1] +".src");
		}
	}
}


// (C) 2000 www.CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this  header
// NS4-6,IE4-6
// Fade effect only in IE; degrades gracefully

// =======================================
// set the following variables
// =======================================

// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 5000

// Duration of crossfade (seconds)
var crossFadeDuration = 3

// Specify the image files
var Pic = new Array() // don't touch this
// to add more images, just continue
// the pattern, adding to the array below

Pic[0] = './images-old/fp1.jpg'
Pic[1] = './images-old/fp2.jpg'
Pic[2] = './images-old/fp3.jpg'
Pic[3] = './images-old/fp4.jpg'

// =======================================
// do not edit anything below this line
// =======================================

var t
var j = 0
var p = Pic.length

var preLoad = new Array()
for (i = 0; i < p; i++){
   preLoad[i] = new Image()
   preLoad[i].src = Pic[i]
}

function runSlideShow(){
   if (document.all){
      

document.images.SlideShow.style.filter="blendTrans(duration=2)"
      

document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)"
      document.images.SlideShow.filters.blendTrans.Apply()      
   }
   document.images.SlideShow.src = preLoad[j].src
   if (document.all){
      document.images.SlideShow.filters.blendTrans.Play()
   }
   j = j + 1
   if (j > (p-1)) j=0
   t = setTimeout('runSlideShow()', slideShowSpeed)
}

//-->
<!--

function openWin(title,thepix,text) {
var param = "fullscreen=1,scrollbars=0";
var NewWin = open('','myDoc',param);
NewWin.document.writeln('<html><link rel="stylesheet" type="text/css" href="dragger.css">');
NewWin.document.writeln('<body><table width="100%" height="100%" border="0"><tr height="100%"><td></td><td valign="middle" width="500">');
NewWin.document.writeln('<p align="left"><span style="font-size: 12pt; font-weight: 700; font-variant: small-caps">'+title+'</span><img src="'+thepix+'"><br />'+text+'</p>');
NewWin.document.writeln('<p align="center"><a href="javascript:window.close();">Close This Window</a></p>');
NewWin.document.writeln('</td><td></td></tr></table></body></html>');
}

//-->

function longPopUp( page, width, height, left, top ) { 
	var yes		= 1; 
	var no		= 0; 
	var menubar     = yes;  // The File, Edit, View Menus 
	var scrollbars  = yes; // Horizontal and vertical scrollbars 
	var locationbar = no;  // The location box with the site URL 
	var directories = no;  // the "What's New", "What Cool" links 
	var resizable   = no;  // Can the window be resized? 
	var statusbar   = no;  // Status bar (with "Document: Done") 
	var toolbar     = no;  // Back, Forward, Home, Stop toolbar 
 
	features = "" + 
		"width=" + width + "," + 
		"height=" + height + "," + 
		"top=" + top + "," + 
		"left=" + left + ""; 
	features += "" + 
		(menubar ? ",menubars" : "") + 
		(scrollbars ? ",scrollbars" : "") + 
		(locationbar ? ",location" : "") + 
		(directories ? ",directories" : "") + 
		(resizable ? ",resizable" : "") + 
		(statusbar ? ",status" : "") + 
		(toolbar ? ",toolbar" : ""); 
 
	window.open( page, 'Order_Form' ); 
} 

// email this page to a friend
// Put this code as your link::

//  javascript:mailpage() 
function mailpage()
{
mail_str = "mailto:?subject=Check out the " + document.title;
mail_str += "&body=I thought you might be interested in the " + document.title;
mail_str += ". You can view it at, " + location.href; 
location.href = mail_str;
}