// JavaScript file for TermsWEB (c) Northants County Council
// Author : Tony Collings 
// Version : 1.0
// Last Modified : 22 Feb 2007

// Opens new windows
var newwindow;
function openWindow(url,name) {
newwindow=window.open(url,name,'width=400,height=500,resizable=yes,scrollbars=yes,toolbar=no,status=no,menubar=no');
	if (window.focus) {newwindow.focus()}
}
//alert("hello");
