function go_there(URL)
{
	var where_to = confirm("You are about to leave the ISE website for a website that is unaffiliated with ISE.  ISE has not been involved in the preparation of the content supplied at the unaffiliated website and does not guarantee or assume any responsibility for its content.");
	if (where_to == true)
	{
		var MyNewWindow = window.open(URL, '_blank');
	}
}


function openFullWindow(URL)
{
	var MyNewWindow = window.open(URL, '_blank', 'channelmode=yes,fullscreen=yes,resizable=yes');
}


function exportdata(targettype, subtype, startDate, endDate, category)
{
    window.open("export.aspx?src=" + targettype + "&view=" + subtype + "&startDate=" + startDate + "&endDate=" + endDate + "&category=" + category, "exporter","width=600,height=400,resizable=yes,scrollbars=yes");
}