function checkSchedule(){			
	var theDuration = document.schedule.theDuration.value;
	var error = 0;
	var strValidChars = "0123456789";
	document.getElementById('message11').innerHTML = '';		

	if(theDuration.length==0){
		document.getElementById('message11').innerHTML = 'Please enter the duration.';
		document.schedule.theDuration.focus();
		error = 1;			
	}

	if(theDuration.length>0){		
		var strChar;
		var blnResult = true;
		
		for (i = 0; i < theDuration.length && blnResult == true; i++){
		  strChar = theDuration.charAt(i);
		  if (strValidChars.indexOf(strChar) == -1){
			 blnResult = false;
	  	  }
		}
		if(blnResult == false){
			document.getElementById('message11').innerHTML = 'The duration should be numeric.';
			document.schedule.theDuration.focus();
			error = 1;			
		}
	}
	
	if(error!=0){
		return false;
	}else{
		return true;	
	}
}


function showDetails(id, mid){
	var URL = "showScheduleInfo.jsp?id="+id+"&m="+mid;
	//eval("page" = window.open(URL, '', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=300,height=200');");
	window.open(URL, '', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=500,height=350');
}

function showDateDetails(theDate, mid){
	var URL = "showScheduleInfo.jsp?id="+theDate+"&m="+mid;
	//eval("page" = window.open(URL, '', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=300,height=200');");
	window.open(URL, '', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=800,height=550');	
}

function uploadFile(aid){
	var URL = "e-trade/form.jsp?id="+aid;
	//eval("page" = window.open(URL, '', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=300,height=200');");
	window.open(URL, '', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=200,height=350');
}

