<!--
var putItThere = null;

var chasm = screen.availWidth;
var mount = screen.availHeight;


var u = 0;
var h = 0;

function deadCenter(page,name,w,h) 
{
	if(document.addEventListener)
	{
	putItThere = window.open(page,name,'scrollbars=no,width=' + (w+2) + ',height=' + (h+2) + ',left=' + ((chasm - w - 10) * .5) + ',top=' + ((mount - h - 30) * .5));
	}
	else putItThere = window.open(page,name,'scrollbars=no,width=' + w + ',height=' + h + ',left=' + ((chasm - w - 10) * .5) + ',top=' + ((mount - h - 30) * .5));
}

function deadCenterScroll(page,name,w,h) 
{
	if(document.addEventListener)
	{
	putItThere = window.open(page,name,'scrollbars=yes,width=' + (w+2) + ',height=' + (h+2) + ',left=' + ((chasm - w - 10) * .5) + ',top=' + ((mount - h - 30) * .5));
	}
	else putItThere = window.open(page,name,'scrollbars=yes,width=' + w + ',height=' + h + ',left=' + ((chasm - w - 10) * .5) + ',top=' + ((mount - h - 30) * .5));
}

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

function closeWinda()
{
	parent.close();
}
-->