<!-- The script below automatically updates the copyright year for all pages of the web site -->
<!-- Begin
function write_date() 
{ 
var thetime=new Date(); 
var nyear=thetime.getYear(); 
if (nyear<=99) 
 nyear= "19"+nyear; 
if ((nyear>99) && (nyear<2000)) 
nyear+=1900; 
document.write(nyear +' '); 
} 
// End -->

<!-- This script controls rollover button effects -->
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin


function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function changeImages() {
	if (document.images && (preloadFlag == true)) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}

var preloadFlag = false;
function preloadImages() {
	if (document.images) {
		home_button_over = newImage("images/home_button-over.gif");
		products_button_over = newImage("images/products_button-over.gif");
		about_ids_button_over = newImage("images/about_ids_button-over.gif");
		contact_us_button_over = newImage("images/contact_us_button-over.gif");
		preloadFlag = true;
	}
}


// End -->

<!-- The script below controls popup window -->
<!-- Idea by:  Nic Wolfe (Nic@TimelapseProductions.com) -->
<!-- Web URL:  http://fineline.xs.mw -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=410,height=410,left = 175,top = 75');");
}
// End -->


