Laravel 4个不同的页面@section正在打破脚本

I'm very new to laravel 4 and am trying to extend my layout with another view.

I have this in the end of my layout.blade.php:

 {{ HTML::script('js/jquery.nicescroll.min.js') }}
 {{ HTML::script('js/jquery.pickmeup.min.js') }}
 {{ HTML::script('js/myscript.js') }}
 </body>
 </html>

Then I have a file page1.blade.php in which I have quite much, to show just the essentials:

@extends('layout/layout')

@section('contents')

<section id="start">
......
</section>
@stop

In this file, all the javascript functions from myscript.js are running without any problems, though they are included only in layout.blade.php


Now I created another view, called 'bookings' with its corresponding file 'bookings.blade.php'

Here is bookings.blade.php:

@extends('layout/layout')

@section('contents')


<section id="bookingform">
<div id="bookingforma" style="background-color: #00a651; height: 10px; width:100%;">

   {{ Form::open(array('url' => 'bookings', 'class' => 'form-inline', 'role' => 'form')) }}
         <div class="form-group">
         <span><strong>Date available?  </strong>  </span>
           {{ Form::text('from1',Input::get('from'),array('class' => 'form-control', 'id' => 'fromforma')) }}
         </div> <span><strong>  -  </strong></span>
         <div class="form-group">
           {{ Form::text('to1',Input::get('to'),array('class' => 'form-control', 'id' => 'toforma')) }}
         </div> <span><strong>  for  </strong></span>
         <div class="checkbox">
           {{ Form::select('persons1', array('1' => '1','2'=>'2','3'=>'3','4'=>'4'),Input::get('persons'),array('class' => 'form-control')) }}

         </div>
     {{ Form::submit('Request!', array('class' => 'btn btn-success')) }}
       {{ Form::close() }}
</div>
</section>
@stop

Basically I'm doing exactly the same with @section and @stop and @extends as in page1.blade.php, but I can't use any of the javascript functions.

To be exact, if I call a

 var a = document.getElementById('bookingform');

withing myscript.js, the javascript breaks for the page1.blade.php's content, too. (And isn't working in bookings.blade.php)

My routes.php file is the following:

Route::get('/', function()
{
    return View::make('page1');
});
Route::get('index', function() {

    return View::make('page1');

});


Route::get('bookings', 'BookingController@getBooking');

Route::post('bookings','BookingController@getBookingDates');

And the BookingController:

class BookingController extends BaseController {


    public function getBooking(){

        return View::make('bookings');
    }


    public function getBookingDates()
    {


        $data = Input::all();


        return View::make('bookings');
    }
}

Is there anything I totally don't get about laravel or does somebody see the problem?

EDIT:

javascript:

$(document).ready(function () {

    function heightsetter() {
        var w = window,
            d = document,
            e = d.documentElement,
            g = d.getElementsByTagName('body')[0],

            y = w.innerHeight || e.clientHeight || g.clientHeight;

        return y;
    }

    var resizeTimeout;
    window.onresize = function () {
        clearTimeout(resizeTimeout);
        var height = document.getElementById('start');
        height.style.height = heightsetter() + "px";
        var heightz = document.getElementById('hotels');
        heightz.style.height = heightsetter() + "px";
        var heightd = document.getElementById('training');
        heightd.style.height = heightsetter() + "px";

        resizeTimeout = setTimeout(function () {

        }, 250); 
    };

    var height = document.getElementById('start');
    height.style.height = heightsetter() + "px";
    var heightz = document.getElementById('hotels');
    heightz.style.height = heightsetter() + "px";
    var heightd = document.getElementById('training');
    heightd.style.height = heightsetter() + "px";
    var heightb = document.getElementById('bookingform'); //<<< **this breaks it**
    heightb.style.height = heightsetter() + "px";

    .....



    });

Looks like you never added that ID to the form itself. You are trying to access something that doesn't exist.

Form::open(array('url' => 'bookings', 'class' => 'form-inline', 'role' => 'form', 'id'=>'bookingForm')