var testimonial = "";

var name = "";

var age = "";

var occupation = "";

/******************************
** Ignore everything below this point **
******************************/

var boxes = "<div id=\"boxes\">";
var content = "<div id=\"content\">";
var bigbox = "<div id=\"bigbox\"><p><em>\"" + testimonial + "\"<\/em> <br \/>-" + name + ", " + age + "<br \/>" + occupation + "<\/p><\/div>";
var smallbox = "<div id=\"smallbox\"><\/div><\/div>";

var browserName = navigator.appName;
if (browserName=="Microsoft Internet Explorer") {
	document.write(content);
	//document.write(boxes);
	//document.write(bigbox);
	//document.write(smallbox);
}
else {
	document.write(boxes);
	//document.write(bigbox);
	//document.write(smallbox);
	//document.write(content);
};