﻿// Opens the given URL in a pop up window.
function openVrmlWorld(url)
{
	var outputWindow = window.open(url, null, "width=480,height=320,directories=0,location=0,menubar=0,resizable=1,scrollbars=0,status=1,titlebar=0,toolbar=0");
	return false;
}
