<!-- //

function printpage() {
  if (window.print)
    window.print()
  else
    alert("Sorry, your browser doesn't support this feature. Please use your browsers print button.");
}

function homeShow() {
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="478" height="184" id="flashcars" align="middle">'
	+ '<param name="allowScriptAccess" value="sameDomain" />'
	+ '<param name="movie" value="images/flashcars.swf" />'
	+ '<param name="quality" value="high" />'
	+ '<param name="bgcolor" value="#ffffff" />'
	+ '<embed src="images/flashcars.swf" quality="high" bgcolor="#ffffff" width="478" height="184" name="flashcars" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />'
	+ '</object>');
}


function docElem(name){
	  if (document.getElementById)	{    	// DOM level 1 browsers: IE 5+, NN 6+
	  	return document.getElementById(name);
	  }
	  else if (document.all)	{  			// IE 4
		return document.all[name];
	  }
	  else if (document.layers)  { 			// NN 4
	   	return document.layers[name];
	  }
}


function sh(obj) {

	var onOff = 0;
	this.onOff = onOff;
	this.obj = obj;
	this.showItem = showItem;
	this.getObj = getObj;

	var DHTML = (document.getElementById || document.all || document.layers);
}

function getObj(name)	{

	  if (document.getElementById)	{    	// DOM level 1 browsers: IE 5+, NN 6+
	  	this.obj = document.getElementById(name);
		this.style = document.getElementById(name).style;
	  }
	  else if (document.all)	{  			// IE 4
		this.obj = document.all[name];
		this.style = document.all[name].style;
	  }
	  else if (document.layers)  { 			// NN 4
	   	this.obj = document.layers[name];
	   	this.style = document.layers[name];
	  }
	  
}
	
function showItem() {

	var it = new getObj(this.obj);
	
	if (this.onOff == 0) {
		it.style.visibility = 'visible';
		it.style.display = 'inline';
		this.onOff = 1;
	} else {
		it.style.visibility = 'hidden';
		it.style.display = 'none';
		this.onOff = 0;
	}
}



// -->
