﻿// JavaScript Document
// Terms of use
function disclaimer()
{
  NewWindow("disclaimer.htm",'campWindow','width=500,height=500,location=no,menubar=no,directories=no,toolbar=no,statusbar=no,resizable=no,scrollbars=yes,titlebar=no');
}

function cPopUp()
{
  NewWindow("closed.html",'campWindow','width=500,height=200,location=no,menubar=no,directories=no,toolbar=no,statusbar=no,resizable=no,scrollbars=yes,titlebar=no');
}

// Send to a friend
function toFriend()
{
  NewWindow("http://www.elite-company.com/sendfriend.aspx",'campWindow','width=500,height=240,location=no,menubar=no,directories=no,toolbar=no,statusbar=no,resizable=no,scrollbars=yes,titlebar=no');
}


// application form
function mass_aplication()
{
  NewWindow("http://www.elite-company.com/mass_application_form.htm",'campWindow','width=516,height=500,location=no,menubar=no,directories=no,toolbar=no,statusbar=no,resizable=no,scrollbars=yes,titlebar=no');
}


// booking online
function book()
{
  NewWindow("http://www.elite-company.com/booking_form.aspx",'campWindow','width=516,height=500,location=no,menubar=no,directories=no,toolbar=no,statusbar=no,resizable=no,scrollbars=yes,titlebar=no');
}

// New Windown Generic Function
function NewWindow(URLtoOpen,windowName,windowFeatures)
{
if (typeof(campWindow)!='undefined') 
   {newWindow.close();}
   newWindow=window.open(URLtoOpen,windowName,windowFeatures);
}


