// JavaScript Document

function Init() {
	Resize();
}

function Resize() {
	ResizeBorder();
}

function ResizeBorder() { 
  //resizes the sr list to fix within the available height
	var h = WindowHeight(); 
	availH = h-90;
	SetObjectHeight('divMain', availH);
}
