var divcontainer = document.getElementById("trainersDiv");
var iframeObject = document.createElement("iframe");
if (typeof fontType == "undefined")
	fontType="";
iframeObject.src="http://www.trainerbase.co.uk/findtrainer.asp?fontsize=" + fontSize + "&boxwidth=" + "&searchkey=" + searchKey + "&output=" + output + "&fonttype=" + fontType + "&type=" + trainerType + "&resultsize=" + resultSize;
iframeObject.width=boxWidth;
iframeObject.height=boxHeight;
if (showBorder == "false")
{
	iframeObject.frameBorder = '0';
}
divcontainer.appendChild(iframeObject);