/*
UT Extension Javascript - New Window v 1.0 - Sept. 2007
URI: http://fcs.tennessee.edu
Author: Dallas Sacca
Description: Opens link address as a new window with scrollbar, resizable, status bar, toolbar, menu bar and location. Dimensions of window ar 500 px wide by 400 px high.
*/
// JavaScript Document
function newwindow(addr){
	window.open(addr,'newwin','width=500,height=400,scrollbars,resizable,status,toolbar,menubar,location');
}
