// JavaScript Document


<!--

function productselect(pic) {
var c
	//document.all("desc").innerText = 'Single Thread Engaging One-Piece Self-Retaining';
	//desc.innerHTML = 'Single Thread Engaging One-Piece Self-Retaining';
	
	if (pic == 1)
	writit("Single Thread, Self-Retaining Fasteners","test");

	if (pic == 2)
	writit("Clips, Self -Sufficient","test");

	if (pic == 3)
	writit("Retaining Rings","test");

	if (pic == 4)
	writit("Plastics, Standard, Custom, Multi-Component Assemblies","test");

	if (pic == 5)
	writit("Tube, Hose & Harness Clamps,  Cable, Wire and Tube Clips","test");

	if (pic == 6)
	writit("Single Thread Engaging, Self-Locking Fasteners","test");

	if (pic == 7)
	writit("Multi-Threaded Fasteners, Nut & Bolt Retainers","test");

	if (pic == 8)
	writit("Stud Receivers, Self-Locking","test");


}

function writit(text,id)
{
	if (document.getElementById)
	{
		x = document.getElementById(id);
		x.innerHTML = text;
	}
	else if (document.all)
	{
		x = document.all[id];
		x.innerHTML = text;
	}
	else if (document.layers)
	{
		x = document.layers[id];
		text2 = '<P class="bodytext">' + text + '</P>';
		x.document.open();
		x.document.write(text2);
		x.document.close();
	}
}

//-->
