// JavaScript Document
function ModelMainPic(aSrc)
{
    document.getElementById('model_main_pic').src = aSrc;
    document.getElementById('model_main_movie').style.display = 'none';
    document.getElementById('model_main_picture').style.display = '';
    //alert(aSrc);
}

function ModelMainMovie(aEmbed)
{   
    var movie=document.getElementById("model_main_movie")
    var new_html = '<iframe src="http://www.ziptuning.nl/models/movies/model_dyno_movie.php?file='+aEmbed+'&autoplay=true" width="400" height="300" frameborder="0"></iframe>';
    
    movie.innerHTML = new_html;
   
    document.getElementById('model_main_picture').style.display = 'none';
    document.getElementById('model_main_movie').style.display = '';
    //alert(aSrc);
}

function ReloadHorizontalMenu(aLang, aBrand, aDir){
   if(document.getElementById('modelgroup').value!=''){
   
     AjaxGetBrandGroupModels(document.getElementById('modelgroup').value, aLang, aBrand, aDir)
   }
       
}

/*
function ReloadHorizontalMenu(aLang, aBrand, aDir){
   if(document.getElementById('modelgroup').value!=''){
   
     setInterval("AjaxGetBrandGroupModels("+document.getElementById('modelgroup').value+",'"+aLang+","+aBrand+",'"+aDir+"')", 1000); 
   }
       
}

*/