// openWin.js - Unisono 

// wordt gebruikt om vanaf startpagina door te gaan 
function openWin( windowURL, windowName )
	{
	var newWindow = window.open( windowURL, windowName, 'width=1024,height=768,toolbar=0,location=0,directories=0,status=1,menuBar=0,scrollBars=1,resizable=1' );
	}

// wordt gebruikt om gastenboek windows te starten 
function openWin_gastenboek( windowURL, windowName )
	{
	var newWindow = window.open( windowURL, windowName, 'width=600,height=500,toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=1,resizable=1' );
	}

// wordt gebruikt om de nieuws-flits te openen mbv. XML & XSL
function openWin_nieuwsflitsTekst( bookmark )
	{
	var newWindow = window.open( '../unisono/unisono_nieuws_disp.php?bookmark=' + bookmark, bookmark, 'width=240,height=600,toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=1,resizable=1' );
	}
// wordt gebruikt om de nieuws-flits te openen die geknipt is uit de kranten 
function openWin_nieuwsflitsURL( windowURL, windowName )
	{
	var newWindow = window.open( windowURL, windowName, 'width=240,height=600,toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=1,resizable=1' );
	}
// wordt gebruikt om de nieuws-flits te openen die verstuurd is als nieuwsbrief 
function openWin_nieuwsflitsURL2( windowURL, windowName )
	{
	var newWindow = window.open( windowURL, windowName, 'width=850,height=600,toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=1,resizable=1' );
	}

// wordt gebruikt om de printout-versie van de agenda te openen 
function openWin_printer( windowURL, windowName )
	{
	var newWindow = window.open( windowURL, windowName, 'width=800,height=600,toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=1,resizable=1' );
	}

// wordt gebruikt om banner copy & paste info te openen
function openWin_banner( banner )
	{
	var newWindow = window.open( '', banner, 'width=800,height=300,toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=0,resizable=0' );
	newWindow.document.write ( '<html>' );
	newWindow.document.write ( '<head>' );
	newWindow.document.write ( '<title>Harmonie Unisono Velp - ' + banner + '</title>' );
	newWindow.document.write ( '<link rel=\"stylesheet\" href=\"../unisono/styles/unisono.css\" type=\"text/css\">' );
	newWindow.document.write ( '</head>' );
	newWindow.document.write ( '<body>' );
	newWindow.document.write ( '<blockquote>' );
	newWindow.document.write ( '<br /><b>om deze Banner te gebruiken<br />Copy &amp; Paste de volgende HTML-code in de betreffende pagina:</b><br /><br />' );
	newWindow.document.write ( '<blockquote>' );
	newWindow.document.write ( '<b>&lt;p align=center>&lt;a href=\"http://www.unisono-velp.info\" target=\"_blank\">&lt;img src=\"http://www.vanderpol-consulting.nl/unisono/images/' + banner + '.gif\" border=\"0\" alt=\"naar de website van Harmonie Unisono Velp\">&lt;/a>&lt;/p></b>' );
	newWindow.document.write ( '</blockquote>' );
	newWindow.document.write ( '</blockquote>' );
	newWindow.document.write ( '<br /><br /><p align=\"center\"><a href=\"javascript:parent.close()\"><img alt=\"Afsluiten\" src=\"../common/images/close.jpg\" border=\"0\"></a></p>' );
	newWindow.document.write ( '<hr width=\"80%\" color=\"Navy\">' );
	newWindow.document.write ( '</body>' );
	newWindow.document.write ( '</html>' );
	}

