function cdWindow(theURL,winName,features) {
  window.open(theURL,winName,features);
}


var newwindow;
function popterms(url)
{
newwindow=window.open(url,'pop','height=600,left=100,top=100,resizable=yes,scrollbars=yes,toolbar=yes,status=no');
	if (window.focus) {newwindow.focus()}
}

var newwindow;
function popterms1(url)
{
newwindow=window.open(url,'pop','height=800,left=100,top=100,resizable=yes,scrollbars=yes,toolbar=yes,status=no');
	if (window.focus) {newwindow.focus()}
}