
var lbodytext = new Array(30);
bptr = 0;
cptr = 0;

var fadeoutctr;
var bfadeout;

HPFInit();

function lAdd(str)
{
 lbodytext[bptr]="<DIV >"+str+"<BR></DIV>";
 
 bptr++;
}

function HPFInit()
{
bptr = 0;
lAdd("I had to pop to Mark's this morning. I played him some snatches - to say he was impressed would be the understatement of the year, and it was your production work he was the most impressed with! Bowie had a similar reaction - in fact they've both already ordered copies! <BR>A tricky brief, carried out to perfection and in the most pleasant, relaxed and professional manner. In fact it was damn good fun! <BR>What more can I say?! <BR><B>Tom Bliss of Napper Bliss, 'the Silverlode'</B>");

lAdd("Phil's sensitivity as a producer provided an added sense of vision to my album. He could see things in the music that I hadn't considered, giving each track a unique character and developing the songs as landscapes. It was a refreshingly new experience to use a collage technique rather than recording in the traditional way. Phil blended the instruments into an interesting 'stew', emphasising different details and creating atmospheres. A particular example of this is the title track, which he spent hours amending and tweaking. The fact that he is a multi-instrumentalist as well as a talented producer, gave me a lot of scope as a songwriter and between the two of us we could utilise a wide spectrum of instruments. In addition, Phil is a lovely guy to work with and we had a lot of fun making the album. <BR><B>CJ Smith -'Hallowed Ground'</B>");

lAdd("...Phil Snell the recording engineer: dedicated, hard-working, highly skilled, thoroughly professional yet delightfully human. So easy to work with, because he is a real musician as well as a great tech-head.<BR>Phil Snell the musician: when God was dishing out talent they gave two double servings to Phil! An incredibly talented multi-instrumentalist. We love his delicate, melodic style - it swings, it sings, it rocks. We especially love his mandolin playing. Even his vocal work (which HE thinks is his weak point) is grand, delivering well-chosen material with great character and pathos. <BR><B>Cath Mundy - Ha'penny Tweedle, Mundy-Turner</B>");

lAdd("... and the production is AAA1, the sound is just so good, Phil Snell has done a fantastic job...<BR><B>Tony Charnock commenting on 'the Kelping', Napper Bliss</B>");

lAdd("...This deliciously unpretentious disc is very probably as much fun to listen to as it was to make, I'd wager - and it helps that the playing is as sparkling as it is, and that Phil's attitude to the music and its communication is so refreshingly evangelistic in the nicest possible way...<BR><B>Dave Kidman on Phil Snell, 'Old Music'</B>");
//lAdd("");
//lAdd("");




cptr = 0;
fadeoutctr = 130;
bfadeout = true;

fader();

}

var ie4 = document.all && !document.getElementById;
var ie5 = document.all && document.getElementById;
var ns6 = !document.all && document.getElementById;
var ns4 = document.layers;
var isMac = (navigator.userAgent.indexOf("Mac") != -1)

function setfade(opa)
{
 z = document.getElementById("quotes");
 if(z == null)
    return;
 if(ie4 || isMac)
 	z = document.all("quotes");
 
   if(!ie5){
    //    imgs.style.MozOpacity = 0 + '%';
	z.style.MozOpacity = opa + '%';
	}
	else
	{
  	  z.style.filter = 'alpha(opacity=' + opa + ')'; //;
	}
	
}
function Next()
{
	cptr++;
	if(cptr >= bptr)
 		 cptr = 0;
	document.getElementById("quotes").innerHTML = lbodytext[cptr];
	bfadeout = false; 		 
}
function fader()
{
 var period = 70;
	
 if(bfadeout)
 {
 fadeoutctr -= 4;
 if(fadeoutctr < 100)
 {
	period = 4000;
	cptr++;
	if(cptr >= bptr)
 		 cptr = 0;
    d = document.getElementById("quotes");
    if(d == null)
        return;
    d.innerHTML = lbodytext[cptr];
	bfadeout = false;
 }
 }
 else
 {
  fadeoutctr += 4;
  
 if(fadeoutctr > 200)
 {
	bfadeout = true;
 }  
  
 if(fadeoutctr > 190)
 {

  fadeoutctr = 201;
  period = 7000;
 }

 }
 setfade(fadeoutctr - 100);
  
 setTimeout('fader()',period);
 }
 

