
	// Insert random press quote
	function InsertHeader()
	{
		PageLinks();
		
		var sQuote = new MakeArray(4);
		
		var iQuoteNo = 1+Math.floor(Math.random()*10)
	
		sQuote[1] = "'Monique has perfect poise... refreshingly unusual... terrific musical support.'<br><strong>The Stage</strong>";
		sQuote[2] = "'Chanteuse puissante et expressive Monique...'<br><strong>Le Monde</strong>";
		sQuote[3] = "'Try to catch the French singer Monique'<br><strong>World and Jazz Critics Choice The Times</strong>";
		sQuote[4] = "'Relish the light touch Monique brings'<br><strong>London Metro</strong>";
		sQuote[5] = "'The French certainly know how to write songs, and this chanteuse definitely knows how to sing them. Encore'<br><strong>The Bournemouth Echo</strong>";
		sQuote[6] = "'She inhabits the songs'<br><strong>The Stage</strong>";
		sQuote[7] = "'Her versatile voice ranged from jazz to lullaby'<br><strong>Romsey Advertiser</strong>";
		sQuote[8] = "'Dramatic and amusing … looks and sounds stunning'<br><strong>Chichester Observer</strong>";
		sQuote[9] = "'Monique’s conviction is absolute, the distillation of the bitter-sweet authentic'<br><strong>The Stage</strong>";
		sQuote[10] = "'...exciting to listen to ... beautifully crafted ... an extremely rewarding evening which I highly recommend'<br><strong>Musical Stages</strong>";

		document.write('<p class="clsQuote">' + sQuote[iQuoteNo] + '</p>');
	}	
	
	function MakeArray(n)
	{
			this.length = n;
			for (var x = 1; x <=n; x++) {
				this[x] = 0;
			}
			return this;
	}
	
	function PageLinks()
	{

		var sItemURL = "mailto:?subject=" + document.title + "&body=This is a link to the Web Site of Monique, French singer/song-writer: " + top.parent.location.href
	
		document.write('<p class="clsPageLinks">');
		document.write('<a href="' + sItemURL + '" target=>E-Mail to a friend</a>');
	
		if (navigator.userAgent.indexOf('MSIE') != -1) {
			document.write(' | <a href="javascript:window.external.AddFavorite(location.href, document.title);">Bookmark this page</a>');
		}
		document.write("</p>");
	
	}
	
	function PlayButton(iTrackNumber)
	{
		document.write('<object type="application/x-shockwave-flash" data="/assets/swf/musicplayer.swf?playlist_url=playlist.xspf&first_track=' + iTrackNumber + '&repeat=false" width="17" height="17">');
		document.write('<param name="movie" value="/assets/swf/musicplayer.swf?playlist_url=playlist.xspf&first_track=' + iTrackNumber + '&repeat=false" />');
		document.write('<img src="/assets/swf/noflash.gif" width="17" height="17" alt="" />');
		document.write('</object>');		
	}
