// redirectVisitor
// Redirects the user to a given URL
// Author: Manuel Schreurs
// Date: 12oct04

function redirectVisitor(lStrURL)
{
	window.location.href=lStrURL;
	return true;
}

// submitForm
// Submits a form
// Author: Manuel Schreurs
// Date: 12oct04

function submitForm(lObjForm)
{
	lObjForm.submit();
}

// createBookmark
// Adds the current page to a bookmark
// Author: Manuel Schreurs
// Date: 12oct04

function createBookmark()
{
	if (window.external && window.external.AddFavorite)
	{
		window.external.AddFavorite(location.href, document.title);
	}
}

