function testme(idnum, theq){
	var thet = theq;
	var mynewnum = idnum;
	var question='';

	question += 'Are you sure you want to ';
	question += theq; 
	question += ' record no. ';
	question += mynewnum; 
	question += '?'; 

	var reply = confirm(question);  

	if (reply){ 
    	return true;
		alert ('done');
	}  
	else{
		return false;
	}  
}
