//
function ExplorerFix() 
{ 
	for (a in document.links) document.links[a].onfocus = document.links[a].blur; 
} 
	if (document.all) document.onmousedown = ExplorerFix;
	

// open popup voor myapura
function Venster(URL)
{
	venster = window.open(URL, 'popupvenster', 'width=720,height=700,resizable=no,menubar=no,scrollbars=1,status=no,toolbar=no');
}


// rating sterren
function change(picture)
{
document.rate1.src = picture
}


// upload video check
function uploadvideo(form)
{
	if (form.titel.value == "Naam van je video") 
  	{
    	alert( "Vul alsjeblieft de naam van de video in." );
    	form.titel.focus();
    	return false ;
  	}
	
	if (form.bestand1.value == "") 
  	{
    	alert( "Kies alsjeblieft een video bestand." );
    	form.bestand1.focus();
    	return false ;
  	}
	
	if (form.kanaaloptie.value == "") 
  	{
    	alert( "Selecteer alsjeblieft een kanaal." );
    	form.kanaaloptie.focus();
    	return false ;
  	}
	
	if (form.typeoptie.value == "") 
  	{
    	alert( "Selecteer alsjeblieft een type." );
    	form.typeoptie.focus();
    	return false ;
  	}
	
  	return true ;
}