// JavaScript Document

getURL = function(url)
{
	if(url != undefined)
	{
		document.location.href = url
	}
}

sendForm = function(form)
{
	document.getElementById(form).submit();
}
