<!--
function index_window()
{
//	var x_window = 'http://www.slipstreamadvantage.com/camperdown/ssa1623/index.php';
//	var x_window = 'http://122.201.83.135/~camp/app/index.php';
	var x_window = 'http://www.camperdowntransport.com.au/app/index.php';
	var new_window = window.open(x_window,'booking','width=1000,height=1000,resizable=yes,scrollbars=yes');
	new_window.focus();
}

function index_link(page,section)
{
	// Query
	var qry = "index.php";
	qry += "?page=" + page;
	if (section != '')
		qry += "&section=" + section;

	// Action Query
    window.location = qry;

	return;
}

function index_search()
{
	// Validate
	if (!isEmpty('search_string', 'Please enter a \'Search Topic\''))
		return;

	// Query
	var qry = "index.php";
	qry += "?page=search";
	qry += "&string=" 	+	document.getElementById('search_string').value;

	// Action Query
    window.location = qry;

	return;
}

function index_home()
{
	// Action Query
    window.location = "index.php";

	return;
}
function index_submit()
{
	// Validate
	if (!isEmpty('contact_name', 'Please enter your \'Name\''))
		return;

	if (!isEmpty('contact_tel', 'Please enter your \'Telephone Number\''))
		return;

	if (!isEmail('contact_email', 'Please enter a valid \'Email Address\''))
		return;

	// Success Message
	alert('There may be a brief delay while your message is sent...');
	
	// Create Query
	var qry = "index.php";
	qry += "?page=thankyou";
	qry += "&mode=submit";
	qry += "&name=" 	+	document.getElementById('contact_name').value;
	qry += "&tel=" 		+	document.getElementById('contact_tel').value;
	qry += "&email=" 	+	document.getElementById('contact_email').value;
	
	// Clear Values
	document.getElementById('contact_name').value = '';
	document.getElementById('contact_tel').value = '';
	document.getElementById('contact_email').value = '';

	// Action Query
    window.location = qry;

	return;
}
-->