// JavaScript Document
function OpenModal() {
            $('body').append('<div id="fade2"></div>'); 		//Add the fade layer to bottom of the body tag.		
            $('#fade2').css({ 'filter': 'alpha(opacity=85)' }).fadeIn();  		//Fade in the fade layer
            $('div.vinBoxMiddle2').css("height", "600px");
            $('#vin_popup2').fadeIn().css({
                'width': Number('990'),
                'height': '650px',
                'margin-top': "-300px",
                'margin-left': "-490px"
            });
            var newuos = "<iframe width=\"853\" height=\"512\" src=\"http://www.youtube.com/embed/3bd_UjurvWk?rel=0&autoplay=1\" frameborder=\"0\" allowfullscreen></iframe>";
            $('#contentcars2').html(newuos).fadeIn(500);
            return false;
        }

        $('div.btnClose2, #fade2').live('click', function () { //When clicking on the close or fade layer...	
            $('#fade2 , #vin_popup2').fadeOut(function () {
                $('#fade2').remove();
                $('div.contentcars2').html('Please Wait...');
            }); //fade them both out				
            return false;
        });


