function windowOpen(href) {
//Opens a new window for the group resources
	var Hpercent = 85;	//Percentage of the vertical screen the window will occupy
	var Wpercent = 85;	//Percentage of the horizontal screen the window will occupy
	var winW = screen.width * (Wpercent / 100);
	var winH = screen.height * (Hpercent / 100);
	var x = ((1 - (Wpercent / 100)) / 2) * screen.width;
	var y = ((1 - (Hpercent / 100)) / 2) * screen.height;
	return !window.open(href,'','toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,height='+winH+',width='+winW+',left='+x+',top='+y);
}
