// JavaScript Document

var newwindow;

function enews(url)

{
	newwindow=window.open(url,'enews','toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,addressbar=0,resizable=0,width=550,height=350,left=15%,top=15%');
	if (window.focus) {newwindow.focus()}
}

function ext(url)

{
	newwindow=window.open(url,'three','toolbar=1,scrollbars=2,location=1,statusbar=1,menubar=1,resizable=1,width=700,height=500,left=15%,top=15%');
	if (window.focus) {newwindow.focus()}
}