
// Function to open new windows for 3D models

function openVrmlWindow(theURL,winName,features) {
   win = window.open(theURL,winName,features);
   win.document.close();
}
