function exportPlan()
{
	var expFormat = document.getElementById("cmbExportFormat").selectedIndex;
	switch (expFormat)
	{
		case 0:
			window.open("index.php?req=export&format=html", "optsWindow", "resizable=1, scrollbars=1, width=600, height=400");
			break;
		case 1:
			window.open("index.php?req=export&format=xls", "optsWindow", "resizable=1, width=600, height=400");
			break;
		case 2:
			window.open("index.php?req=export&format=csv", "optsWindow", "resizable=1, width=600, height=400");
			break;
		case 3:
			window.open("index.php?req=export&format=xml", "optsWindow", "resizable=1, width=600, height=400");
			break;
	}
}

function printPage()
{
	window.print();
}
