/******************************************************************************
* function showGreyBoxContent()
******************************************************************************/
function showGreyBoxContent(url,frame_width,frame_height){
  GB_showCenter('',url,frame_height,frame_width);
}


/******************************************************************************
* function showTVSpot()
******************************************************************************/
function showTVSpot(){
  showGreyBoxContent('http://www.grundig.de/vision9/video/',680,396);
}


/******************************************************************************
* function showTVSpotFineArts()
******************************************************************************/
function showTVSpotFineArts(){
  showGreyBoxContent('http://www.grundig.de/fine-arts/video/',680,396);
}



/******************************************************************************
* function showTVSpotByUrlCheck()
******************************************************************************/
function showTVSpotByUrlCheck()
{

  var current_url = window.location.href; 
  var url_arr = current_url.split("?");

  if(url_arr.length > 1){

    var arr_url = url_arr[1].split("&");
  
  	for(i=0;i<arr_url.length;i++){
  		split = arr_url[i].split("=");
       
  		if(split[0] == "mode" && split[1] != ""){
  			if(split[1] == "video"){
  				showTVSpot();return;
  			}else if(split[1] == "finearts"){
  				showTVSpotFineArts(); return; 
  			}
  			
  			      
  		}
  	}
	}
}

//************ call the function onload **************************************/
$(document).ready(function() {
		showTVSpotByUrlCheck();
});


