function openLoadWindow(name, file)
{
	openSizeWindow(name, file, 320, 240)
}

function openSizeWindow(name, file, width, height)
{
	window.open(file, name, 
		'width=' + width
		+ ',height=' + height
		+ ',innerWidth=' + width
		+ ',innerHeight=' + height
		+ ',dependent=yes,directories=no,hotkeys=no,location=no,menubar=no,status=no,toolbar=no,resizable=no').focus();
}
function openScrollingWindow(name, file, width, height)
{
	window.open(file, name, 
		'width=' + width
		+ ',height=' + height
		+ ',innerWidth=' + width
		+ ',innerHeight=' + height
		+ ',dependent=yes,directories=no,hotkeys=no,location=no,menubar=no,status=no,toolbar=no,resizable=yes,scrollbars=yes').focus();}

function closeWindow()
{
	this.close();
}

function changeLocation(relativelocation)
{
  location.replace(relativelocation);
}