//This javascript can be used for any javascript required globally (within both front end and admin pages).


// submit confirm function
function confirmSubmit(objtype){
	var agree=confirm("Are you sure you want to delete this "+objtype+"?");
	if (agree)
		return true ;
	else
		return false ;
}



