// JavaScript Document
// written by Stephan Brenninkmeijer
// © 2011 http://www.brennfilm.com

function clearall(){
	parent.document.getElementById("video_frame").innerHTML = '';
}
function fill_hoofdtekst(url1) {
	parent.window.open(url1,'hoofd_tekst');
}

function fill_picture(pp) {
	var p1 = './images/'
	var picture = p1+pp+'.jpg';
	var bigpicture = p1+pp+'_hq.jpg';
	parent.document.getElementById("video_frame").innerHTML = '<a id="thumb1" href="'+bigpicture+'" class="highslide" onclick="return hs.expand(this)">'+'<img src="'+picture+'"  alt="Highslide JS" title="Click to enlarge" /></a>';
}

function video(host,code,caption)
{
parent.document.getElementById("video_frame").innerHTML = '<iframe id="video" title="YouTube video player" class="youtube-player" type="text/html" width="494" height="350" frameborder="0" src=""></iframe>';
if (host=='yt') {
		videoIframe = parent.document.getElementById("video");
		videoIframe.src = 'http://www.youtube.com/embed/'+code+'?rel=0&hd=1';
		parent.document.getElementById('caption').innerHTML ='<span class="title">'+caption+'</span>';
	}
	if (host=='vimeo') {
		videoIframe = parent.document.getElementById("video");
		videoIframe.src = 'http://player.vimeo.com/video/'+code;
		parent.document.getElementById('caption').innerHTML ='<span class="title">'+caption+'</span>';
	}
}
function nav2() {
	link1="javascript:video('yt','NWlr1GUOsqU','TRAILER')";
	link2="javascript:video('yt','ppIL83M37tM','TRAILER')";
	link3="javascript:video('yt','YxX_rlsZSvY','TRAILER')";
	
parent.document.getElementById('nav2').innerHTML = '<table width="500" border="0"> <tr> <td width="33%" align="center" valign="top"><a href="' + link1 +
'"><img src="images/witch.jpg" width="144" height="204" /></a></td> <td width="33%" align="center" valign="top"><a href="'+link2+'"><img src="images/fort.jpg" width="144" height="204" /></a></td> <td width="34%" align="center" valign="top"><a href="'+link3+
'"><img src="images/dropouts.jpg" width="144" height="204" /></a></td></tr></table>';
}

function clear(){
		parent.document.getElementById('nav2').innerHTML ='';
	}///////////////////////////////////

function imdb(id) {
	window.open('http://www.imdb.com/name/nm'+id,'IMDB');		
}


