function EnquiryForm() {
    var width = 300;
    var height = 360;
    var left = (screen.width - width) / 2;
    var top = (screen.height - height) / 2;
    var params = 'width=' + width + ', height=' + height;
    params += ', top=' + top + ', left=' + left;
    params += ', directories=no';
    params += ', location=no';
    params += ', menubar=no';
    params += ', resizable=no';
    params += ', scrollbars=no';
    params += ', status=no';
    params += ', toolbar=no';

    window.open('http://www.tavistockhirecentre.co.uk/forms/enquiry/Enquiry.aspx', 'Enquiry Form', params);
    //window.open('http://localhost:2187/forms/enquiry/Enquiry.aspx', 'Enquiry Form', params);
}

function PrintPage() {
    window.print();
}

function SubscribeForm() {
    var width = 300;
    var height = 170;
    var left = (screen.width - width) / 2;
    var top = (screen.height - height) / 2;
    var params = 'width=' + width + ', height=' + height;
    params += ', top=' + top + ', left=' + left;
    params += ', directories=no';
    params += ', location=no';
    params += ', menubar=no';
    params += ', resizable=no';
    params += ', scrollbars=no';
    params += ', status=no';
    params += ', toolbar=no';

    window.open('http://www.tavistockhirecentre.co.uk/forms/subscribe/Subscribe.aspx', 'Subcribe Form', params);
    //window.open('http://localhost:2187/forms/subscribe/Subscribe.aspx', 'Enquiry Form', params);
}