function changeContent(id, newPg)
{
	document.getElementById(id).src=newPg;
}
function reSizeFrm(id, ifrm)
{
	if (document.getElementById(id).contentDocument)
	{
		document.getElementById(id).height=document.getElementById(id).contentDocument.height + 'px';
		document.getElementById('backGound').style.height = document.getElementById(id).contentDocument.height + 330 + 'px' ;
	} 
	else 
	{
		document.all(id).style.height = ifrm.document.body.scrollHeight + (ifrm.document.body.offsetHeight - ifrm.document.body.clientHeight) + 'px';
		document.all('backGround').style.height=ifrm.document.body.scrollHeight + (ifrm.document.body.offsetHeight - ifrm.document.body.clientHeight) + 330  + 'px';
	}
}
