function load()
{
/*	if(document.getElementById('content').offsetHeight > document.getElementById('left').offsetHeight)
	{
		document.getElementById('bottom_bg').style.height = document.getElementById('content').offsetHeight - 10 + "px";
	}
	else
	{
		document.getElementById('bottom_bg').style.height = "700px";
	}						
	document.getElementById('onload').style.marginLeft='0px';*/
}
var gAutoPrint = true;
function printSpecial(id)
{
	if (document.getElementById != null)
	{
		var html = '<HTML style="background:#fff">\n<HEAD>\n';

		if (document.getElementsByTagName != null)
		{
			var headTags = document.getElementsByTagName("head");
			if (headTags.length > 0)
				html += headTags[0].innerHTML;
		}
		
		html += '\n</HE' + 'AD>\n<BODY style="background:#fff">\n';
		
		var printReadyElem = document.getElementById("printReady_"+id);
		
		if (printReadyElem != null)
		{
				html += printReadyElem.innerHTML;
		}
		else
		{
			alert("Could not find the printReady section in the HTML");
			return;
		}
			
		html += '\n</BO' + 'DY>\n</HT' + 'ML>';
		
		var printWin = window.open("","printSpecial");
		printWin.document.open();
		printWin.document.write(html);
		printWin.document.close();
		if (gAutoPrint)
			printWin.print();
	}
	else
	{
		alert("Sorry, the print ready feature is only available in modern browsers.");
	}
}
