/*
function reload()
{
	window.location.href = window.location.href;
}

//-----------------------------------------------------------

if (window.innerHeight == null) 
	document.onresize = reload();
else
	window.onresize = reload;
*/

//-----------------------------------------------------------

function showlogo() 
{
    var iw; // Set inner width 
    if (window.innerWidth == null) 
		iw = document.body.clientWidth;
    else 
		iw = window.innerWidth;
    if (iw < 870)
		document.write('<div class="logo"><img src="http://www.fokas.nl/pp/logo_fokas.gif"></div>');
    else
		document.write('<div class="logo"><img src="http://www.fokas.nl/pp/logo_fokas1.gif"></div>');
}

//-----------------------------------------------------------

function showlogoPaulbooks() 
{
    var iw; // Set inner width 
    if (window.innerWidth == null) 
		iw = document.body.clientWidth;
    else 
		iw = window.innerWidth;
    if (iw < 870)
		document.write('<div class="logo"><img src="http://www.fokas.nl/pp/logo_paulbooks.gif"></div>');
    else
		document.write('<div class="logo"><img src="http://www.fokas.nl/pp/logo_paulbooks1.gif"></div>');
}

//-----------------------------------------------------------

function menuSoort() 
{
    var ih; // Set inner height
    if (window.innerHeight == null) 
		ih = document.body.clientHeight;
    else 
		ih = window.innerHeight;
    if (ih < 520)
		document.write('<div id="menu-klein"><div id="menu-items-klein">');
    else
		document.write('<div id="menu"><div id="menu-items">');
}

//-----------------------------------------------------------

function eindDiv()
{
	document.write('</div>');
}

//-----------------------------------------------------------
