// JavaScript Document

function is_loaded() 
{ //DOM
	if (document.getElementById)
	{
		setTimeout( "document.getElementById('preloader').style.visibility='hidden'", 15000 );
		//setTimeout( "window.location = 'http://www.externautomotive.com/index.php?lang=en&page=contact&mod=form3'", 15000 );
	}
	else
	{
		if (document.layers)
		{ //NS4
			setTimeout( "document.preloader.visibility = 'hidden'", 15000 );
			//setTimeout( "window.location = 'http://www.externautomotive.com/index.php?lang=en&page=contact&mod=form3'", 15000 );
		}
		else 
		{ //IE4
			setTimeout( "document.all.preloader.style.visibility = 'hidden'", 15000 );
			//setTimeout( "window.location = 'http://www.externautomotive.com/index.php?lang=en&page=contact&mod=form3'", 15000 );
		}
	}
}

function skip_loading()
{
	if (document.getElementById)
	{
		document.getElementById('preloader').style.visibility='hidden';
	}
	else
	{
		if (document.layers)
		{ //NS4
			document.preloader.visibility = 'hidden';
		}
		else 
		{ //IE4
			document.all.preloader.style.visibility = 'hidden';
		}
	}
	
	//window.location = 'http://www.externautomotive.com/index.php?lang=en&page=contact&mod=form3';
	
}
