// JavaScript Document
var currentimageheight = 0;
var currentimagewidth = 369;

function showTrail(content)
{	
	var src;	
	if(content=='1')
	{
		src = "<h1>What is <span class='blue'>CooL</span>iner?</h1><img src='images/boxes.jpg' alt='boxes.jpg' /><h1>Material Description</h1><p>A revolutionary type of insulation made from metalized films and air bubbles. It is an excellent material for keeping your products cool or warm during transport.</p>";
	}
	if(content=='2')
	{
		src = "<h1>How does <span class='blue'>CooL</span>iner work?</h1><p>The foil reflective layer on the <span class='blue'>CooL</span>iner effectively blocks radiating heat from the environment.</p><p>The air bubble layer provide conductive insulation, further enhancing the insulation characteristics if <span class='blue'>CooL</span>iner.</p><p align='center'><img src='images/technology.gif' alt='technology.gif' /></p><h1>Material Specifications</h1><table class='order_table' cellpadding='0' cellspacing='0'><tr><td colspan='2' class='vline'><strong>CooLiner –Insulated Carton Liner</strong></td></tr><tr><td class='midleline'><strong>DESCRIPTION</strong></td><td class='vline'>1 layer heavy duty bubble, heavy duty metalized film on other side</td></tr><tr><td class='midleline'><strong>WEIGHT & WIDTH</strong></td><td class='vline'>0.99 oz/ft2</td></tr><tr><td class='midleline'><strong>THICKNESS</strong></td><td class='vline'>3/16 in</td></tr><tr><td class='midle'><strong>USAGE</strong></td><td>Used to cover or encase perishables or temperature sensitive products. FDA approved for direct food contact.</td></tr></table>";
	}
	if(content=='3')
	{
		src = "<h1>Why is it better?</h1><ul style='list-style:square;'><li>Excellent temperature control performance</li><li>Foldable- space savings, ships efficiently</li><li>Does not crack or break during transport</li><li>Watertight- prevents leakage during transport</li><li>Easy to dispose</li></ul>";
	}
	if(content=='4')
	{
		src = "<h1>Insulates better</h1><ul style='list-style:square;'><li>use less refrigerant</li><li>slower shipping</li></ul><h1>Foldable</h1><ul style='list-style:square;'><li>easy to store</li><li>more economical to ship</li></ul>";
	}	
	document.onmousemove = followMouse;
	gettrailobj().display = 'block';	
	document.getElementById("trail").innerHTML = src;
}
//----------------------------------------------------------

function hideTrail()
{
	gettrailobj().display = 'none';
	document.getElementById("trail").innerHTML = "";
	document.onmousemove = '';
}
//----------------------------------------------------------

function gettrailobj()
{
	if (document.getElementById)
		return document.getElementById("trail").style
	else if (document.all)
		return document.all.trail.style
}

function truebody() 
{
	return (!window.opera && document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

function followMouse(e)
{	
	gettrailobj().display="block";
	gettrailobj().right=160+"px";
	gettrailobj().top=-200+"px";
}
//----------------------------------------------------------
