function setHeight()
{
	var height = document.body.scrollHeight;
	var height2 = document.body.scrollHeight;
	var height3 = document.body.scrollHeight;
	var width = 200;
	Opera = navigator.userAgent.indexOf("Opera") > -1;
	IE = navigator.userAgent.indexOf("MSIE") > -1;
	
	//Checks if browser = Opera and sets 3 specific divs to site scrollhHeight
	if(Opera) 
	{
	height = height -15
    height3 = height3 -419
	document.getElementById('siteBorderLeft').style.height = height;
	document.getElementById('siteBorderRight').style.height = height;
	document.getElementById('siteMainDiv').style.height = height;
	document.getElementById('doubleColumnRightNarrowHeight').style.height = height3;
	}
	//If IE, set 3 specific divs to site scrollhHeight minus height of footer and body margin
	else if(IE)
	{
	height = height -33
	height2 = height2 -30
	height3 = height3 -452
	document.getElementById('siteBorderLeft').style.height = height;
	document.getElementById('siteBorderRight').style.height = height;
	document.getElementById('siteMainDiv').style.height = height2;
	document.getElementById('doubleColumnRightNarrowHeight').style.height = height3;
	}
	//If not Opera or IE (hopefully Mozilla), set 3 specific divs to site scrollhHeight minus height of footer and body margin
	else
	{
	width = width - 1
	height = height -30
	height2 = height2 -15
	height3 = height3 -435
	document.getElementById('siteBorderLeft').style.height = height;
	document.getElementById('siteBorderRight').style.height = height;
	document.getElementById('siteMainDiv').style.height = height2;
	document.getElementById('doubleColumnRightNarrowHeight').style.height = height3;
	document.getElementById('doubleColumnRightNarrowHeight').style.width = width;
	}
}


		function getDocHeight(doc)
		{
		  var docHt = 0, sh, oh;
		  if (doc.height) docHt = doc.height;
		  else if (doc.body) {
		    if (doc.body.scrollHeight) docHt = sh = doc.body.scrollHeight;
		    if (doc.body.offsetHeight) docHt = oh = doc.body.offsetHeight;
		    if (sh && oh) docHt = Math.max(sh, oh);
		    //alert("INTER;)NET EXPLORER/OPERA\n\nSCROLL HEIGHT: "+sh+"\nOFFSET HEIGHT: "+oh);
		  }
		  return docHt;
		}
	
		function setIframeHeight(iframeName)
		{
		  var iframeWin = parent.window.frames[iframeName];
		  var iframeEl = parent.document.getElementById? parent.document.getElementById(iframeName): parent.document.all? parent.document.all[iframeName]: null;
	
		  if ( iframeEl && iframeWin ) {
		    iframeEl.style.height = "auto"; // helps resize (for some) if new doc shorter than previous
	
		    var docHt = getDocHeight(iframeWin.document);
	
		    // need to add to height to be sure it will all show
		    if (docHt) iframeEl.style.height = (docHt - 123 - 4) + "px";
		  }
		  else if(iframeEl)
		  {
		  	//var sh = iframeEl.scrollHeight;//iframeEl.contentDocument.height;
		  	//var oh = iframeEl.offsetHeight; //iframeEl.contentDocument.height; 
	
		  	//if (sh && oh) docHt = Math.max(sh, oh);
		  	
			docHt = document.body.scrollHeight;
		  	if (docHt) iframeEl.style.height += (docHt - 123) + "px";
		  }
		}
	
		var document_size = "100";
		function setIframe(setThis)
		{
			// set document size
			document_size = getDocHeight(document);
		
			var index = 0;
			setIframeHeight(setThis);
		}
	
