function gCreateIFrame(theID, theSrc)
{
		try{document.body.removeChild(document.getElementById(theID));}catch(er){}
		var theIframe = document.createElement('iframe')
		theIframe.style.display = 'none'
		theIframe.setAttribute('id', theID) 
		theIframe.setAttribute('src', theSrc) 
		var IFrameObj = document.body.appendChild(theIframe);
}

function gRemoveIFrame(theID)
{
	try{document.body.removeChild(document.getElementById(theID));}catch(er){}
}
