/*******************************************************************/
/*
/*	Web Engine Copyright 2008 IssusSoft
/*
/*	file:
/*		content.php
/*
/*  description:
/*		The javascript code for the user interface section of the
/*		site (the main site).
/*
/*
/*	Author(s):	Chris Smith
/*				http://www.issussoft.com
/*
/*	This is licensed software.  Please read the license accompanied
/*  with the software or if you have lost the license contact
/*  csmith@issussoft.com
/*
/*******************************************************************/

	//Opens the print friendly contact card
	function PrintContactCard()
	{
		window.open("modules/contact.php", "_blank", "");
	}

	//Opens the slide show window
	function ShowSlideShow(dir, carname, pic, w, h, r)
	{
		window.open("slideshow.php?car=" + carname + "&pic=" + pic + "&w=" + w + "&h=" + h + "&refresh=" + r + "&dir=" + dir, "_blank", "width=" + w + ", height=" + (h + 150) + ", titlebar=0");
	}

	//Opens the web store
	function ShowWebStore()
	{
		window.open("store/index.php", "_blank", "");
	}

	function UpdateSlide(dir, carname, pic, w, h)
	{
		window.location.href = 'slideshow.php?car=' + carname + '&pic=' + pic + '&w=' + w + '&h=' + h + "&dir=" + dir + "&refresh=1";
	}

	function StartUpdateTimer(dir, carname, pic, w, h)
	{
		setTimeout(function(){UpdateSlide(dir, carname, pic, w, h)}, 3000);
	}
