function detail(eventid)
{
	var url = 'more.aspx?id=' + eventid;
	window.open(url,'detail','width=600,height=350,resizable=yes,statusbar=no,toolbar=no,scrollbars=yes');
}

function selectAll()
{
	var allInputs = document.getElementsByTagName('input');

	for (i=0; i < allInputs.length; i++)
	{
		allInputs[i].checked = true;
	}
}

function clearAll()
{
	var allInputs = document.getElementsByTagName('input');

	for (i=0; i < allInputs.length; i++)
	{
		allInputs[i].checked = false;
	}
}

function attachment(file_name)
{
	var url = 'http://www.elcamino.edu/uportal_upload/' + file_name;
	window.open(url,'_blank','width=550,height=550,resizable=yes,statusbar=no,toolbar=no,scrollbars=yes,dependent=yes,menubar=no,directories=no,titlebar=no,alwaysRaised=yes');
}
