// JavaScript Document
function clicker(){
	var thediv=document.getElementById('displaybox');
	if(thediv.style.display == "none"){
		thediv.style.display = "";
		thediv.innerHTML = "<div id='film_container'><table width='100%' height='100%' border='0' cellspacing='0' cellpadding='0' summary=''><tr><td><embed width=\"556\" height=\"334\" flashvars=\"file=http://incstream.at5.nl/100413_inc_alfadiving.flv&amp;frontcolor=0x4589b7&amp;lightcolor=0xDDDDDD&amp;overstretch=false&amp;stretching=exactfit&amp;image=http://www.amsterdaminc.tv/wp-content/uploads/2010/04/100413_inc_alfadivingflv-2.jpg&amp;height=334&amp;width=556&amp;recommendations=http://www.amsterdaminc.tv/wp-content/themes/amsterdaminc/recommendations.xml&amp;searchbar=false&amp;plugins=googlytics-1\" allowscriptaccess=\"always\" allowfullscreen=\"true\" quality=\"high\" name=\"mpl\" id=\"mpl\" style=\"\" src=\"http://www.amsterdaminc.tv/wp-content/themes/amsterdaminc/flash/player.swf\" type=\"application/x-shockwave-flash\"></td></tr><tr><td style='background:#E05D00;padding:3px;'><button type='button' class='closeWindow' onclick='return clicker(); return false;'>CLOSE WINDOW</button></td></tr></table></div>";
	}else{
		thediv.style.display = "none";
		thediv.innerHTML = '';
	}
	return false;
}
