function ConfirmDeleteSelections() 
{
	for (i=0; i<document.forms[0].elements.length; i++) 
	{
		elm = document.forms[0].elements[i]
		if (elm.name.indexOf ('chkDelete') != -1) 
		{
			if(elm.checked) 
			{
				return confirm ('Are you sure you want to delete your selection(s)?')
			}
		}
	}
	
	alert('There is no selection(s) to delete.');
	return false;
}

function printWindow(){
bV = parseInt(navigator.appVersion)
if (bV >= 4) window.print()
}


function ConfirmDeleteItem() 
{
	return confirm ('Are you sure you want to delete current record?')
}

function BrowseDate(pControl)
{	
	window.open("DatePicker.aspx?controlid=" + pControl,'DatePicker','width=225,height=222,resizable=no');
}


function BrowseWin(pControl)
{	
	window.open("../Admin/stuDetails.aspx?id=" + pControl,'DatePicker','width=300,height=300,resizable=no');
}


