var newwindow;
function poptastic(url,name, dim)
{
if(dim == undefined){
var dim="height=710,width=500"
}
	newwindow=window.open(url,name,dim);
	if (window.focus) {newwindow.focus()}
}

function closeWindow() {
if (!NewWindow.closed) NewWindow.close();
}


function poptastic2(url,name, dim)
{
if(dim == undefined){
var dim="height=850,width=518,scrollbars=yes"
}
	newwindow=window.open(url,name,dim);
	if (window.focus) {newwindow.focus()}
}

function poptastic3(url,name, dim)
{
if(dim == undefined){
var dim="height=800,width=1000,left=100,resizable=yes,scrollbars=yes,toolbar=yes,status=yes"
}
	newwindow=window.open(url,name,dim);
	if (window.focus) {newwindow.focus()}
}

function closeWindow() {
if (!NewWindow.closed) NewWindow.close();
}
