// JavaScript Document

var newwindow;
function popUpRadio(url)
{
	newwindow=window.open(url,'name','height=300,width=239, resize=no');
	if (window.focus) {newwindow.focus()}
}
	
var newwindow;
function popUpTerms(url)
{
	newwindow=window.open(url,'name','height=600,width=500, resize=yes,scrollbars=yes');
	if (window.focus) {newwindow.focus()}
}
