﻿// JavaScript Document
function disclaimer()
{
  NewWindow("disclaimer.html",'campWindow','width=300,height=220,location=no,menubar=no,directories=no,toolbar=no,statusbar=no,resizable=no,scrollbars=yes,titlebar=no');
}

function NewWindow(URLtoOpen,windowName,windowFeatures)
{
if (typeof(campWindow)!='undefined') 
   {newWindow.close();}
   newWindow=window.open(URLtoOpen,windowName,windowFeatures);
}