<!--
function FrameResize(name,width)
{
var oBody
try{
	oBody=iframe1.document.body;
}
catch(e)
{
	oBody = document.all(name).document.body;
}
try{
var oFrame = document.all(name);
window.status = oFrame.style.height + ' ' + ' ' +oBody.scrollHeight;
oFrame.style.height = oBody.scrollHeight;
oFrame.style.width=width;
}
catch(e) {
window.status = 'Error: ' + e.number + '; ' + e.description;
}
}

function IsEnter(oEvent){
	return oEvent.keyCode==13;
}

//-->