//Resizes the iframes in the window to the appropriate height
function redraw(frameID) {

	if (getBrowser() == 1 ){
		document.getElementById(frameID).height =document.frames(frameID).document.body.scrollHeight + 30; 
		//document.getElementById(frameID).width =document.frames(frameID).document.body.scrollWidth; 
	}
	else{
		document.getElementById(frameID).height =document.getElementById(frameID).contentDocument.height + 40;
		//document.getElementById(frameID).width =document.getElementById(frameID).contentDocument.width;
	}
}//redraw

function getBrowser(){
	var browserName=navigator.appName; 
	if (browserName=="Netscape")
		return 2;
	else	//internet explorer
		return 1;			
}//getBrowser