// JavaScript Document
window.onresize = resize;

function printDIV()
{
	var a = window.open('','','width=300,height=600');
	a.document.open("text/html");
	a.document.write("<div class='CA' style='top:4.729in;left:.76in;width:6.948in;height:.563in;overflow:hidden;'>");
	a.document.write(document.getElementById('scrolldiv_content').innerHTML);
	a.document.write("</div>");
	a.document.close();
	a.print();
}


function resize()
{
var branddiv = document.getElementById('container'); 
scrolldiv_setWidth(502);	// Setting total width of scrolling div
scrolldiv_setHeight(branddiv.clientHeight-120);	// Setting total height of scrolling div

scrolldiv_initScroll();	// Initialize javascript functions 
}