<!--

//var leftloc = (screen.width - 450) / 2;
//var toploc = (screen.height - 280) / 2;

var leftloc = 0;
var toploc = 0;
var galwin;
var swin;
var stwin;
var nswin;

function openstatic(url, ht, wd) 
{
if (!stwin || stwin.closed)
{
	stwin= window.open ("", "", 'toolbar=0,top=' + toploc + ',left=' + leftloc + ',directories=0,status=0,menubar=0,scrollbars=0,resizable=1,width=' + wd + ',height=' + ht);
	stwin.document.close();
	stwin.location.href = url;
}
else {
    stwin.focus();
       }
}

function opengeneral(url, ht, wd) 
{
if (!galwin || galwin.closed)
{
	galwin = window.open ("", "", 'toolbar=0,top=' + toploc + ',left=' + leftloc + ',directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=' + wd + ',height=' + ht);
	galwin.document.close();
	galwin.location.href = url;
}
else {
    galwin.focus();
       }
}


function opennoscroll(url, ht, wd) 
{
if (!nswin || nswin.closed)
{
	nswin = window.open ("", "", 'toolbar=0,top=' + toploc + ',left=' + leftloc + ',directories=0,status=0,menubar=0,scrollbars=0,resizable=1,width=' + wd + ',height=' + ht);
	nswin.document.close();
	nswin.location.href = url;
}
else {
    nswin.focus();
       }
}


function openmid(url, ht, wd) 
{
if (!swin || swin.closed)
{
	swin = window.open ("", "", 'toolbar=0,top=3,left=100,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=' + wd + ',height=' + ht);
	swin.document.close();
	swin.location.href = url;
}
else {
    swin.focus();
       }
}
// -->