var tl=[];
tl[0]="WELCOME TO GLEVUM CONSERVATORIES  ";
tl[1]="VOTED THE U.K.'s BEST CONSERVATORY COMPANY";
tl[2]="FREE PHONE 0800 33 22 55 ";
tl[3]="TO ARRANGE YOUR FREE DESIGN CONSULTATION APPOINTMENT.";
tl[4]=" ";

var max=4;
var index=0; text_pos=0;
var str_length=tl[0].length;

function type_text() {        
	//window.status=tl[index].substring(0,text_pos)+"_";
	if (text_pos++==str_length) {
		text_pos=0;
		setTimeout("type_text()",1500);
		index++;
		if(index==max) index=0;
		str_length=tl[index].length;
	} else {
		setTimeout("type_text()",100);
	}
}

function showOffer(n) {
	if (n==1) {
		window.open("offer1.htm","offer","toolbar=no,location=no,directories=no,status=no,scrollbars=no,width=450,height=589");
	} else if (n==2) {
		window.open("offer2.htm","offer","toolbar=no,location=no,directories=no,status=no,scrollbars=no,width=450,height=589");
	}
}