// JavaScript Document

function iFrameChange(filename, div)
{
//	getData('http://capetownfestival.co.za/_iframe/XID1-' + filename + '.html', div);
	getData('http://www.ctrc.co.za/_iframe/XID1-' + filename + '.html', div);
}

function trim(s)
{
	var l=0; var r=s.length -1;
	while(l < s.length && s[l] == ' ')
	{	l++; }
	while(r > l && s[r] == ' ')
	{	r-=1;	}
	return s.substring(l, r+1);
}